* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* Pista color ki jagah Off-White background */
    background-color: #f8f9fa; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    display: flex;
    flex: 1;
    padding: 20px 40px;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

/* Left Banner Styling */
.banner-section {
    flex: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-banner-img {
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: contain;
    /* Image background ke sath perfectly blend hogi ab */
}

/* Right Form Section */
.form-section {
    flex: 0.9;
    display: flex;
    justify-content: center;
}

.form-card {
    background: #ffffff;
    width: 100%;
    max-width: 460px;
    padding: 30px 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-header-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-form {
    display: none;
    flex-direction: column;
}

.auth-form.active {
    display: flex;
}

.auth-form h2 {
    text-align: center;
    color: #0c3b1b;
    font-size: 24px;
}

.form-subtext {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
}

.leaf-divider {
    color: #115e2b;
    margin: 6px 0 15px 0;
    position: relative;
    text-align: center;
}

.leaf-divider::before, .leaf-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: #d1e3d6;
}

.leaf-divider::before { right: calc(50% + 18px); }
.leaf-divider::after { left: calc(50% + 18px); }

.input-group {
    margin-bottom: 12px;
}

.input-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 14px;
    color: #888;
    font-size: 14px;
}

.input-field input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid #e1e8e3;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    background: #fcfdfe;
    transition: 0.2s;
}

.input-field input:focus {
    border-color: #115e2b;
    background: #fff;
}

.toggle-password {
    position: absolute;
    right: 14px;
    color: #888;
    cursor: pointer;
    font-size: 14px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 16px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #444;
}

.forgot-link {
    color: #115e2b;
    text-decoration: none;
    font-weight: 600;
}

.btn-submit {
    background-color: #0b461f;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background-color: #073014;
}

.switch-form-text {
    text-align: center;
    font-size: 13px;
    margin-top: 14px;
    color: #555;
}

.switch-form-text a {
    color: #115e2b;
    font-weight: 700;
    text-decoration: none;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px dashed #e0e0e0;
    font-size: 12px;
    color: #555;
}

.trust-badges i {
    color: #115e2b;
}

/* Footer */
.footer-bar {
    background-color: #0b461f;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-wrapper {
        flex-direction: column;
        padding: 15px;
    }
}