.qodef-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
}

.qodef-auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

.qodef-auth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.qodef-auth-button--login {
    border: 2px solid #144443;
    color: #144443;
}

.qodef-auth-button--login:hover {
    background-color: #144443;
    color: #fff;
}

.qodef-auth-button--register {
    background-color: #144443;
    color: #fff;
    border: 2px solid #144443;
}

.qodef-auth-button--register:hover {
    background-color: transparent;
    color: #144443;
}

/* Мобильная версия */
@media only screen and (max-width: 1024px) {
    .qodef-header-wrapper {
        padding: 0 20px;
    }

    .qodef-auth-buttons {
        display: none;
    }
    
    .qodef-mobile-header-navigation .qodef-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 20px 15px;
        padding: 0;
    }
}