/* Authentication Pages Global Styles */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    animation: slideUp 0.5s ease;
}

.auth-header {
    background: var(--primary-color);
    /* Uses global var */
    color: white;
    padding: 30px;
    text-align: center;
}

.auth-header h2 {
    font-weight: 700;
    margin-bottom: 5px;
}

.auth-header p {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.auth-body {
    padding: 30px;
}

.auth-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.auth-footer a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Controls Customization */
.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    /* Mint tint */
    border-color: var(--primary-color);
}

.btn-primary {
    background-color: #16a34a;
    /* Tailwind Green 600 */
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #15803d;
    /* Tailwind Green 700 */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}