/* Authentication Pages Styles */
.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-header h1 {
    color: #333;
    font-weight: 700;
}

.auth-header p {
    color: #666;
    font-size: 1.1rem;
}

.auth-body {
    padding: 2rem;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.feature-list {
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.auth-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.auth-links a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.alert {
    border-radius: 10px;
    border: none;
}

.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

/* Logout page styles */
.logout-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.logout-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.btn-login, .btn-home {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-home {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e9ecef;
}

.btn-login:hover, .btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.countdown {
    margin-top: 2rem;
    color: #666;
    font-style: italic;
}

.logout-stats {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}

.security-tips {
    margin-top: 2rem;
    text-align: left;
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.security-tips h6 {
    color: #856404;
    margin-bottom: 1rem;
}

.security-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.security-tips li {
    margin-bottom: 0.5rem;
    color: #856404;
}

/* Responsive design */
@media (max-width: 768px) {
    .auth-body {
        padding: 1.5rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logout-card {
        padding: 2rem;
        margin: 1rem;
    }
}