/* Logout page specific styles - Liquid Glass styling matching login page */

/* Enhanced liquid glass card styling for logout page */
.card {
    margin-top: 3rem;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 206, 118, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-header {
    padding: 2rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0 !important;
}

.card-body {
    padding: 2rem 1.5rem;
}

/* Icon animation */
.fas.fa-sign-out-alt {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Text animations */
.lead {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.card-body p:last-of-type {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.d-grid {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Button liquid glass styling */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-outline-primary {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 206, 118, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .card {
        margin: 1rem;
    }
    
    .card-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .card-body {
        padding: 1.5rem 1rem;
    }
    
    .fas.fa-sign-out-alt {
        font-size: 3rem !important;
    }
}