﻿/* =========================
   BACKGROUND (MAIN FIX 🔥)
========================= */
.form-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #a3a3a3, #f8f8f8);
    display: flex;
    justify-content: center;
}

/* =========================
   WRAPPER
========================= */
.form-wrapper {
    width: 100%;
    max-width: 520px;
    padding: 20px 10px 40px;
}

/* =========================
   HEADER
========================= */
.top-header {
    text-align: center;
    margin-bottom: 10px;
}

.app-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.app-sub {
    color: #bbb;
    font-size: 13px;
}

/* =========================
   BANNER
========================= */
.form-banner {
    /*height: 250px;*/
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 10px;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   INFO CARD
========================= */
.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    
    margin-bottom: 20px;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
}

.info-sub {
    font-size: 13px;
    color: #666;
}

/* =========================
   STEP PROGRESS (FIXED 🔥)
========================= */
.step-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #444;
    color: #bbb;
    font-size: 12px;
}

    .step-circle.active {
        background: #6C63FF;
        color: #fff;
        box-shadow: 0 0 10px rgba(108,99,255,0.6);
    }

/* =========================
   FORM CARD (MAIN UI 🔥)
========================= */
.form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 5px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* =========================
   TITLES
========================= */
.section-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* =========================
   INPUTS
========================= */
.mud-input-root {
    margin-bottom: 14px;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    background: linear-gradient(135deg, #6C63FF, #5a52e0);
    color: white !important;
    border-radius: 12px !important;
    padding: 12px;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

    .btn-primary:hover {
        transform: translateY(-1px);
    }

/* =========================
   NAV BUTTONS
========================= */
.nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {

    .form-wrapper {
        padding: 10px;
    }

    .form-card {
        padding: 18px;
    }
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 768px) {

    .form-wrapper {
        max-width: 600px;
    }

    .form-card {
        padding: 26px;
    }

    .app-title {
        font-size: 26px;
    }
}
