/* =============================================
   SHARED AUTHENTICATION STYLES
   Used across all sites for login/signup/password
   Generated: 2025-09-08 23:33:22
   ============================================= */

/* Base Authentication Layout */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.auth-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

/* Form Styling */
.auth-form .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.auth-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Buttons */
.auth-submit-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Social Login */
.social-login {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-login-btn {
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-login-btn:hover {
    border-color: #333;
    background: #f8f9fa;
}

.social-login-btn img {
    width: 20px;
    margin-right: 10px;
}

/* Remember Me & Forgot Password */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--bs-primary);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Sign Up Link */
.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

/* Error Messages */
.auth-errors {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Success Messages */
.auth-success {
    background: #efe;
    border: 1px solid #cfc;
    color: #060;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-box {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .auth-submit-btn {
        font-size: 1rem;
    }
}
