@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
    --primary: #4f46e5;
    --green: #00b67a;
    --dark: #0b2339;
    --gray: #64748b;
    --white: #ffffff;
        --shadow: 0 10px 40px rgba(0,0,0,0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

.signup-page {
    display: flex;
    min-height: 100vh;
    background-color: var(--white);
}

/* LEFT SIDE */
.signup-info {
    flex: 1;
    background: linear-gradient(135deg, #0b2339 0%, #1e293b 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}

.back-home { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.back-home h2 { font-size: 24px; color: var(--white); font-weight: 800; }
.back-home span { color: var(--gray); }

.info-content h1 { font-size: 42px; font-weight: 800; line-height: 1.2; margin-top: 40px; }
.info-content h1 span { color: var(--green); }

.benefit-list { margin-top: 40px; list-style: none; }
.benefit-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 18px; font-weight: 500; }
.benefit-list i { color: var(--green); font-size: 24px; }

.testimonial-mini { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.testimonial-mini p { font-style: italic; color: #94a3b8; font-size: 16px; margin-bottom: 10px; }
.testimonial-mini span { font-weight: 700; color: var(--white); }

/* RIGHT SIDE (FORM) */
.signup-form-container {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.registration-form {
    width: 100%;
    max-width: 550px;
}

.form-header { margin-bottom: 40px; }
.form-header h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.form-header p { color: var(--gray); font-size: 16px; }

.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { margin-bottom: 25px; display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 14px; font-weight: 700; color: var(--dark); }

.input-group input, .input-group select {
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #edf2f7;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--primary);
    background: #f8fafc;
}

/* Styling for the new Description box */
.input-group textarea {
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #edf2f7;
    outline: none;
    font-size: 15px;
    font-family: inherit; /* Ensures it uses Plus Jakarta Sans */
    transition: 0.3s;
    resize: vertical; /* Allows user to grow it downwards only, not sideways */
    min-height: 100px;
    background: white;
}

.input-group textarea:focus {
    border-color: var(--primary);
    background: #f8fafc;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.05); /* Subtle glow effect */
}

/* Optional: making the label a bit more descriptive */
.input-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, var(--primary), var(--green));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 182, 122, 0.2);
    transition: 0.3s;
}

.back-home .site-logo {
    height: 50px; /* Slightly larger for the brand-focused sidebar */
    width: auto;
    
}

/* Ensure the container stays aligned */
.back-home {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    
}

.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 182, 122, 0.3); }

.form-footer { text-align: center; margin-top: 25px; font-size: 13px; color: var(--gray); }
.form-footer a { color: var(--primary); font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .signup-page { flex-direction: column; }
    .signup-info { padding: 40px 25px; }
    .info-content h1 { font-size: 32px; }
    .signup-form-container { padding: 60px 25px; }
}

@media (max-width: 500px) {
    .input-grid { grid-template-columns: 1fr; }
      .container, .nav-container, .hero-container { padding: 0 25px; }
}