/* css/auth.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    background-color: #ffffff;
}

/* Left Banner (Desktop) */
.auth-banner {
    display: none;
    width: 45%; 
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    color: white;
    overflow: hidden;
}

/* Decorative Circles/Patterns */
.auth-banner::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.auth-banner::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.auth-banner-content {
    position: relative;
    z-index: 10;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .auth-banner {
        display: flex;
    }
}

/* Right Form */
.auth-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: white;
    overflow-y: auto;
}

.auth-form-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

/* Form Elements */
.auth-group {
    margin-bottom: 1.25rem;
}

.auth-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.auth-input {
    display: block;
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    color: #111827;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.auth-input-container {
    position: relative;
}

.auth-icon-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: #9ca3af;
}

.auth-input.pl-10 {
    padding-left: 2.75rem;
}

.auth-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.auth-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    font-size: 1rem;
}

.auth-btn:hover {
    background-color: #1d4ed8;
}

.auth-btn-secondary {
    display: inline-block;
    color: #2563eb;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.auth-btn-secondary:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid #e5e7eb;
}

.auth-divider span {
    padding: 0 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Captcha Box */
.captcha-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
