:root {
    --brand-green: #0a3a2a;
    --brand-green-hover: #072a1e;
    --brand-gold: #a88d59;
    --bg-page: #f4f4f4; 
    --bg-white: #ffffff;
    --text-gray: #6c757d;
    --text-light-green: #8cb3a5;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    
}

/* --- Main Card Container --- */
.registration-card {
    max-width: 1100px;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin: 2rem;
    display: flex;
    flex-wrap: wrap;
}

/* --- Left Panel (Branding) --- */
.left-panel {
    background-color: var(--brand-green);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pre-title {
    font-size: 0.75rem;
    color: var(--brand-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.brand-description {
    font-size: 1.05rem;
    color: var(--text-light-green);
    line-height: 1.6;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 90%;
}

/* Testimonial Section */
.testimonial {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: white;
}

.testimonial-author {
    font-size: 0.65rem;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

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

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

.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.95rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Form Controls */
.custom-label {
    font-size: 0.65rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
}

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

.custom-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    background-color: transparent;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

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

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

/* Input specific modifiers */
.verified-badge {
    position: absolute;
    right: 0;
    bottom: 10px;
    font-size: 0.65rem;
    color: var(--brand-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-prefix {
    position: absolute;
    left: 0;
    bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

input#phone {
    padding-left: 25px; 
}

.toggle-password {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: #adb5bd;
    cursor: pointer;
    font-size: 1.1rem;
}

.toggle-password:hover {
    color: var(--brand-green);
}

/* Button */
.btn-submit {
    background-color: var(--brand-green);
    color: white;
    border-radius: 2px;
    padding: 14px;
    border: none;
    width: 100%;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

/* Responsive behavior */
@media (max-width: 768px) {
    .left-panel, .right-panel {
        padding: 2.5rem;
    }
    .brand-title {
        font-size: 2.8rem;
    }
}
.password-toggle-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.1rem; /* Slightly larger to make the icon clear */
    color: #888;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.password-toggle-btn:hover {
    color: #111;
}