/* Auth Pages Styles - BITVI refresh */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-18px); }
    to { opacity: 1; transform: translateX(0); }
}

.auth-card {
    animation: fadeIn 0.45s ease;
}

.auth-form .form-control,
.auth-form .form-select {
    transition: all 0.25s ease;
}

.auth-form .form-control:focus,
.auth-form .form-select:focus {
    border-color: #2563EB !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
}

.auth-form .form-control:hover:not(:focus),
.auth-form .form-select:hover:not(:focus) {
    border-color: rgba(37, 99, 235, 0.35) !important;
}

.auth-form .form-check-input {
    transition: all 0.2s ease;
}

.auth-form .form-check-input:checked {
    background-color: #2563EB;
    border-color: #2563EB;
}

.auth-form .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.auth-form .btn {
    transition: all 0.25s ease;
}

.auth-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18) !important;
}

.auth-form .btn:active {
    transform: translateY(0);
}

.auth-form .alert,
.auth-form .invalid-feedback {
    animation: slideInFromLeft 0.25s ease;
}

.auth-form a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.auth-form a:hover {
    opacity: 0.92;
}

@media (min-width: 992px) {
    .auth-card:hover {
        box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14) !important;
    }
}
