
.multi-step-odoo-form {
    max-width:720px;
    margin:40px auto;
    padding:40px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,0.1);
}

.form-step.active {
    display:block;
}
.form-step {
    display:none ;
}



.progress-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
}

.step-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #e5e7eb;
    color: #6b7280;
}

.step-indicator.active {
    background: #e11d48;
    color: white;
}

.multi-step-odoo-form h3 {
    text-align: center;
    margin-bottom: 35px;
    color: #1f2937;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #374151;
}

.multi-step-odoo-form input[type="text"],
.multi-step-odoo-form input[type="email"],
.multi-step-odoo-form input[type="tel"],
.multi-step-odoo-form select,
.multi-step-odoo-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 22px;   /* 8px + extra spacing */
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.multi-step-odoo-form input:focus,.multi-step-odoo-form select:focus,.multi-step-odoo-form textarea:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.radio-group {
    margin: 15px 0 25px;
    display: flex;
    gap: 30px;
}

.next-btn, .prev-btn, .submit-btn {
    padding: 14px 36px;
    font-size: 17px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
}

.next-btn, .submit-btn { background: #e11d48; color: white; }
.prev-btn { background: #6b7280; color: white; }

#form-message { text-align: center; margin-top: 30px; font-size: 18px; }
.success { color: #166534; }
.error { color: #b91c1c; }