﻿.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    background: white;
    border-bottom: 1px solid #ECECEC;
    z-index: 9999;
}

.header-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 46px;
}

.menu {
    display: flex;
    gap: 40px;
}

    .menu a {
        font-size: 15px;
        font-weight: 500;
        color: #334155;
        transition: .2s;
    }

        .menu a:hover {
            color: #5B21B6;
        }

.header-buttons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.login-button {
    font-weight: 600;
}

.primary-button {
    background: #5B21B6;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: .25s;
}

    .primary-button:hover {
        transform: translateY(-2px);
    }
