/* Общие стили */
.navbar {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.nav-logo {
    height: 40px;
    width: auto;
}

/* Кнопки справа на десктопе */
.auth-buttons {
    display: flex;
    align-items: center;

}

/* Адаптив для мобильных */
@media (max-width: 767px) {
    .auth-buttons {
        flex-direction: column;
        justify-content: center !important;
        text-align: center;
        margin-top: 15px; /* Отступ сверху */
        width: 100%;
    }

        .auth-buttons a {
            width: 100%; /* Кнопки на всю ширину */
            justify-content: center;
        }

    .navbar-brand {
        margin: 0 auto; /* Лого по центру */
    }
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}



/* Центрирование страницы */
.register-page {
    height: calc(90vh - 80px);
}

/* Карточка */
.register-card {
    width: 100%;
    max-width: 400px;
}

/* Поля ввода в стиле макета */
.form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    background: #E8E8E8;
    border: none;
    outline: none;
    font-size: 15px;
}

    /* Убираем фокус-обводку Bootstrap */
    .form-input:focus {
        box-shadow: none;
        background: #eeeeee;
    }

/* Ссылка "забыли пароль" */
.forgot-link {
    font-size: 14px;
    color: #3D3D3D;
    text-decoration: underline;
    cursor: pointer;
}

    .forgot-link:hover {
        color: #000;
    }

/* Кнопка — как на фото */
.register-btn {
    background: rgba(77, 113, 240, 1);
    border: none;
    padding: 12px;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.2s;
}

    .register-btn:hover {
        background: rgba(55, 92, 220, 1);
    }

.form-control {
    border: 1px solid #ccc !important;
    background-color: #ffffff !important;
}

    .form-control:focus {
        border-color: #258cfb !important;
        box-shadow: 0 0 0 0.2rem rgba(37, 140, 251, 0.25) !important;
    }


