body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

/* HEADER */
.header {
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.header h1 {
    margin: 0;
    font-size: 34px;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* FORM CARD */
.form-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* INPUTS */
input, select, textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
}

/* FOCUS */
input:focus, select:focus, textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

/* BUTTONS */
button {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    transform: translateY(-2px);
}

/* NAV BUTTONS */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

/* STEPS */
.step {
    display: none;
}

.step.active {
    display: block;
}

/* HEADINGS */
h2 {
    color: #1e3a5f;
}
.section-title {
    margin-top: 20px;
    font-weight: bold;
    color: #1e3a5f;
}

.error {
    display: none;
    color: red;
    margin-top: 15px;
    font-weight: bold;
}

label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
    color: #1e3a5f;
}
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: white;
    width: 400px;
    max-width: 90%;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.popup-box h3 {
    color: #d00000;
    margin-top: 0;
}

.popup-box button {
    margin-top: 15px;
}