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

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

/* --- Left Panel (Branding) --- */
.left-panel {
    background-color: var(--brand-green);
    color: white;
    background-image: linear-gradient(rgba(10, 58, 42, 0.85), rgba(10, 58, 42, 0.85)), url('https://images.unsplash.com/photo-1505935428862-770b6f24f629?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.brand-divider {
    width: 45px;
    border-top: 2px solid var(--brand-gold);
    opacity: 1;
}

.brand-footer {
    font-size: 0.7rem;
    color: var(--brand-gold);
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* --- Right Panel (Login Form) --- */
.right-panel {
    background-color: var(--bg-light);
}

.form-title {
    font-family: 'Playfair Display', serif;
    color: var(--brand-green);
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Form Controls */
.custom-label {
    font-size: 0.6rem;
    color: var(--brand-gold);
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 0;
}

.forgot-link {
    font-size: 0.65rem;
    color: #999;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.forgot-link:hover {
    color: #666;
}

.custom-input {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    background-color: transparent;
    padding: 10px 0;
    box-shadow: none !important;
    font-size: 0.9rem;
    color: #333;
}

.custom-input::placeholder {
    color: #adb5bd;
    font-weight: 300;
}

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

/* Buttons */
.btn-auth {
    background-color: var(--brand-green);
    color: white;
    border-radius: 0;
    padding: 14px;
    border: none;
    transition: background-color 0.3s ease;
}

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

.btn-auth span.btn-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn-google {
    background-color: #f4f4f4;
    color: #555;
    border-radius: 0;
    padding: 14px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-google:hover {
    background-color: #e9e9e9;
}

.btn-google span.btn-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer Links */
.signup-text {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.highlight-link {
    color: var(--brand-gold);
    text-decoration: none;
}

.highlight-link:hover {
    color: #8c7344;
    text-decoration: underline;
}
/* Password Toggle Wrapper and Layout */
.password-input-wrapper {
    display: relative;
    width: 100%;
}

.password-toggle-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #888; /* Matches your quiet-luxury muted color palette */
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover {
    color: #111; /* Darkens subtlely on hover */
}