/* --- 1. Global Page Layout & Background --- */


/* --- 2. Left Side Images Positioning --- */
.image-container { position: relative; height: 380px; }
.main-house-img { width: 380px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.city-overlay-img { 
    position: absolute; top: 150px; left: 160px; width: 260px; 
    border-radius: 15px; border: 8px solid white; box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
}

/* --- 3. Form Styling (No Card, No Shadow) --- */
.reg-card { 
    border: none !important; box-shadow: none !important; 
    background: transparent !important; padding: 0 !important; margin-bottom: 100px !important; 
}
.brand-orange { color: #f28532; }
.btn-orange { 
    background-color: #f28532 !important; color: white !important; 
    padding: 12px; font-weight: bold; border-radius: 10px !important; 
}

/* --- 4. User Type Buttons --- */
.user-type-btn { 
    border: 1px solid #dce2ee !important; background: white !important; 
    color: #666 !important; font-size: 13px !important; border-radius: 10px !important;
    padding: 10px !important;
}
.user-type-btn.active { 
    border: 2px solid #f28532 !important; background: #fff8f3 !important; 
    color: #f28532 !important; font-weight: bold; 
}
.popular-badge { 
    background: #f28532; color: white; font-size: 10px; padding: 2px 8px; 
    border-radius: 10px; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); z-index: 10; 
}

/* --- 5. Figma Style OTP Modal Fixes --- */
.modal-content {
    border-radius: 24px !important;
    border: none !important;
}

.otp-lock-icon {
    background: #fff8f3;
    color: #f28532;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
}

.otp-input {
    width: 45px !important;
    height: 55px !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 12px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    background: #fff !important;
}

.otp-input:focus {
    border-color: #f28532 !important;
    box-shadow: 0 0 0 4px rgba(242, 133, 50, 0.1) !important;
    outline: none !important;
}

.btn-verify {
    background: #f28532 !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 14px !important;
    font-weight: 600 !important;
    width: 100%;
    border: none !important;
    transition: 0.3s;
}

.btn-verify:hover {
    background: #e07622 !important;
    transform: translateY(-1px);
}

.forgot-card {
    border-radius: 24px !important;
}

.forgot-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff4ea;
    color: #f28532;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.forgot-help-text {
    color: #7b8698;
    font-size: 14px;
    line-height: 1.5;
}

.forgot-captcha-box {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #f2c7a5;
    border-radius: 12px;
    background: #fff8f3;
    color: #1f2937;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.forgot-modal .form-control,
.forgot-modal .input-group-text,
.forgot-modal .btn {
    border-radius: 12px !important;
}

.forgot-modal .form-control {
    min-height: 48px;
}

.forgot-modal .input-group .btn {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.forgot-modal .input-group .form-control {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.forgot-otp-input {
    width: 44px !important;
    height: 52px !important;
}

.forgot-password-actions .btn {
    min-height: 48px;
}

/* --- 6. Responsive Fixes --- */
@media (max-width: 991px) {
    .image-container { display: none; }
    .otp-input { width: 40px !important; height: 50px !important; }
    .forgot-otp-input { width: 40px !important; height: 48px !important; }
}
