/* ========================================================= */
/* AUTH MODULE: LOGIN & REGISTRATION                         */
/* ========================================================= */

.auth-wrapper {
    min-height: 100vh;
    background: url('/static/images/login-illustration.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: transparent;
}

/* Left Side: Form Area */
.auth-form-side {
    flex: 1.2;
    /* Changed from 0.95 to 0.8 for more transparency */
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(12px); /* Softens the background image */
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    max-height: 90vh;
    overflow-y: auto;
}

/* Right Side: Info Area */
.auth-info-side {
    flex: 0.8;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.9), rgba(26, 54, 93, 0.95));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Inner glass pane for the right side text */
.glass-pane {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

/* Custom Input Styling */
.zenzele-input {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(248, 250, 252, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.zenzele-input:focus {
    background-color: #fff;
    border-color: var(--zenzele-orange);
    box-shadow: 0 0 0 4px rgba(255, 133, 27, 0.1);
    outline: none;
}

.form-section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--zenzele-orange);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

/* Captcha Styling to ensure it fits the glass theme */
.captcha-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}