/* auth.css - Styling for Authentication Pages */
:root {
    --bg-color: #f7f9fc;
    --text-dark-blue: #1c274c;
    --text-secondary: #64748b;
    --orange-primary: #ff8a00;
    --orange-gradient: linear-gradient(135deg, #ffb347 0%, #ff7b00 100%);
    --blue-gradient: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

body {
    background-color: var(--bg-color);
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.text-dark-blue { color: var(--text-dark-blue) !important; }
.text-orange { color: var(--orange-primary) !important; }

/* Background Shapes */
.auth-bg-shape {
    position: absolute;
    top: -10%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle at center, rgba(224, 242, 254, 0.8) 0%, transparent 60%);
    z-index: -1;
}

.auth-bg-shape-2 {
    position: absolute;
    bottom: -10%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle at center, rgba(255, 237, 213, 0.8) 0%, transparent 60%);
    z-index: -1;
}

/* Auth Card */
.auth-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(149, 157, 165, 0.1);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.auth-card .logo-area i {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Form Controls */
.form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-dark-blue);
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark-blue);
    margin-bottom: 0.4rem;
}

/* Button */
.btn-auth {
    background: var(--orange-gradient);
    border: none;
    color: #fff;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.3);
    color: #fff;
}

/* Links */
.auth-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-link:hover {
    color: #e67a00;
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

/* Thank You specific */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}
.success-icon i {
    font-size: 36px;
    color: #fff;
}
