/* ===================================
   NonLoggedIn.css - Centralized CSS for Identity Pages
   Used by: Login, Register, ForgotPassword, ResetPassword, etc.
   =================================== */

/* Identity-specific container */
.identity-container {
    min-height: 100vh;
    padding-top: 2vh;
}

/* Identity card styling */
.identity-card {
    border: 2px solid #e3f2fd;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(3, 169, 244, 0.15);
    background: white;
    transition: box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    will-change: box-shadow;
}

.identity-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Identity header styling */
.identity-header {
    background: linear-gradient(135deg, #1976d2, #42a5f5) !important;
    border-radius: 18px 18px 0 0;
    padding: 1rem;
}

/* Identity footer styling */
.identity-footer {
    background: #f8fafc !important;
    border-radius: 0 0 18px 18px;
}

/* Animation for Identity pages */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for Identity pages */
@media (max-width: 768px) {
    .identity-container {
        padding-top: 1vh;
    }
    .identity-card .card-body {
        padding: 2rem 1.5rem;
    }
}