/**
 * logout.css - Logout page styles
 */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.logout-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 60px 50px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

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

.icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.icon-container svg {
    width: 50px;
    height: 50px;
    color: white;
}

.logout-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.logout-message {
    font-size: 16px;
    color: #718096;
    margin-bottom: 10px;
    line-height: 1.6;
}

.user-info {
    background: #f7fafc;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    font-size: 14px;
    color: #4a5568;
}

.user-info strong {
    color: #2d3748;
    font-weight: 600;
}

.expired-notice {
    background: #fff5f5;
    border-left: 4px solid #fc8181;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.expired-notice strong {
    color: #c53030;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.expired-notice p {
    color: #742a2a;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0;
}

.btn-container {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: #edf2f7;
    color: #4a5568;
}

.btn-secondary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.footer-text {
    margin-top: 30px;
    font-size: 13px;
    color: #a0aec0;
}

@media (max-width: 600px) {
    .logout-container {
        padding: 40px 30px;
    }

    .logout-title {
        font-size: 24px;
    }

    .btn-container {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
