:root {
    --geep-green: #1a4d2e;
    --geep-orange: #d9480f;
    --geep-light: #f9fdf8;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --white: #ffffff;
    --border: #e0eadd;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--geep-light); color: var(--text-dark); overflow-x: hidden; }

.signup-container {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR STYLING */
.signup-sidebar {
    flex: 1;
    background: linear-gradient(rgba(26, 77, 46, 0.9), rgba(26, 77, 46, 0.9)), url('../img/pattern.png');
    background-size: cover;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand h2 { font-size: 1.5rem; font-weight: 800; }
.brand h2 span { color: var(--geep-orange); }

.sidebar-content h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.sidebar-content p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 40px; }

.trust-points { display: flex; flex-direction: column; gap: 20px; }
.point { display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 1rem; }
.point i { color: var(--geep-orange); font-size: 1.2rem; }

/* FORM SECTION STYLING */
.signup-form-section {
    flex: 1.2;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.form-wrapper { width: 100%; max-width: 500px; }

.form-header { margin-bottom: 30px; }
.form-header h2 { font-size: 2rem; font-weight: 800; color: var(--geep-green); }
.form-header a { color: var(--geep-orange); text-decoration: none; font-weight: 700; }

.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--text-muted); }

.input-field {
    display: flex;
    align-items: center;
    background: #f4f7f4;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0 15px;
    transition: 0.3s;
}

.input-field:focus-within { border-color: var(--geep-green); background: white; }

.input-field i { color: #999; font-size: 1rem; }
.input-field input {
    border: none;
    background: transparent;
    padding: 15px;
    width: 100%;
    outline: none;
    font-family: inherit;
    font-weight: 500;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* STRENGTH METER */
.strength-meter { height: 4px; background: #eee; border-radius: 10px; margin-top: 8px; overflow: hidden; }
.strength-bar { height: 100%; width: 0; transition: 0.3s; }
.strength-bar.weak { background: #ff4d4d; }
.strength-bar.medium { background: #ffa500; }
.strength-bar.good { background: #2ecc71; }
.strength-bar.strong { background: #1a4d2e; }
.strength-text { font-size: 0.7rem; font-weight: 700; margin-top: 5px; display: block; text-transform: uppercase; }

.error-msg { font-size: 0.75rem; color: #ff4d4d; font-weight: 600; margin-top: 5px; display: none; }

.toggle-password { cursor: pointer; color: var(--text-muted); }

/* TERMS CHECKBOX */
.terms-group { margin: 25px 0; }
.checkbox-container { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; cursor: pointer; color: var(--text-muted); }
.checkbox-container a { color: var(--geep-green); font-weight: 700; text-decoration: none; }

.btn-signup {
    width: 100%;
    background: var(--geep-green);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(26, 77, 46, 0.2);
}

.btn-signup:hover { background: var(--geep-orange); transform: translateY(-2px); }

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .signup-container { flex-direction: column; }
    .signup-sidebar { padding: 40px; }
    .sidebar-content h1 { font-size: 2rem; }
    .signup-form-section { padding: 40px 20px; }
}

@media (max-width: 576px) {
    .form-row { grid-template-columns: 1fr; }
}