:root {
    --brand-green: #0a3a2a;
    --brand-green-hover: #072a1e;
    --brand-gold: #a88d59;
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --text-gray: #6c757d;
    --text-dark: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
}

/* --- Layout --- */
.split-screen {
    min-height: 100vh;
}

.left-panel {
    background-color: var(--brand-green);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    /* Dark overlay to make text readable */
    box-shadow: inset 0 0 0 2000px rgba(10, 58, 42, 0.75); 
}

/* Background Images */
.bg-ingredients {
    background-image: url('https://images.unsplash.com/photo-1615486171448-4fd13f5fb4eb?q=80&w=1000&auto=format&fit=crop');
}
.bg-olive-oil {
    background-image: url('https://images.unsplash.com/photo-1474979266404-7eaacbcd87c5?q=80&w=1000&auto=format&fit=crop');
}

/* --- Left Panel Typography --- */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    top: 2rem;
    left: 4rem;
}

.security-badge {
    font-size: 0.65rem;
    color: var(--brand-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gold {
    color: var(--brand-gold);
}

.brand-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 80%;
    border-left: 1px solid var(--brand-gold);
    padding-left: 1rem;
}

/* --- Right Panel (Forms) --- */
.right-panel {
    background-color: var(--bg-white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.back-link {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: inline-block;
}

.back-link:hover {
    color: var(--text-dark);
}

.form-title {
    font-family: 'Playfair Display', serif;
    color: var(--brand-green);
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* --- Form Controls --- */
.custom-label {
    font-size: 0.65rem;
    color: var(--brand-gold);
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    display: block;
}

.input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

/* Style 1: Filled Input (Forgot Password) */
.input-filled {
    width: 100%;
    border: none;
    background-color: #f8f9fa;
    padding: 12px 15px;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
}

/* Style 2: Underlined Input (Reset Password) */
.input-underlined {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background-color: transparent;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.input-underlined:focus {
    border-bottom-color: var(--brand-green);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 1.1rem;
    cursor: pointer;
}

/* --- Buttons & Pills --- */
.btn-submit {
    background-color: var(--brand-green);
    color: white;
    border-radius: 0;
    padding: 14px;
    border: none;
    width: 100%;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-submit:hover {
    background-color: var(--brand-green-hover);
    color: white;
}

.requirement-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.pill {
    font-size: 0.65rem;
    padding: 4px 8px;
    background-color: #f1f3f2;
    color: var(--text-gray);
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pill.active {
    background-color: #e6f0eb;
    color: var(--brand-green);
}

/* --- Footer Area --- */
.support-footer {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-text {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin: 0;
}

.support-email {
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
}

.secure-badge {
    font-size: 0.6rem;
    background-color: #f1f3f2;
    padding: 4px 8px;
    color: var(--text-gray);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.copyright {
    text-align: center;
    font-size: 0.6rem;
    color: #ccc;
    letter-spacing: 1px;
    margin-top: 3rem;
    text-transform: uppercase;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .left-panel {
        padding: 3rem 2rem;
    }
    .logo-text {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 2rem;
    }
    .right-panel {
        padding: 3rem 2rem;
    }
}