* {
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(120deg, #e0e7ff 0%, #f4f6fb 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.wizard-container {
    max-width: 1000px;
    margin: 48px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(80, 112, 255, 0.10), 0 1.5px 4px rgba(0,0,0,0.04);
    padding: 40px 32px 32px 32px;
    position: relative;
    overflow-x: auto;
}
.wizard-progress {
    margin-bottom: 32px;
}
.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 18px;
}
.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4f8cff 0%, #2563eb 100%);
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(.4,2,.6,1);
}
.wizard-steps-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.98em;
    color: #6b7280;
    margin: 0 2px;
    flex-wrap: wrap;
}
.wizard-step-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    font-weight: 500;
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s;
    cursor: pointer;
    position: relative;
    min-width: 70px;
    max-width: 120px;
    word-break: break-word;
}
.wizard-step-label.active {
    color: #2563eb;
    opacity: 1;
}
.wizard-step-label .fa {
    font-size: 1.3em;
    margin-bottom: 2px;
}
form {
    width: 100%;
}
.form-step {
    display: none;
    animation: fadeIn 0.5s;
    padding: 8px 0 0 0;
}
.form-step.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-step h2 {
    font-size: 1.45em;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-section {
    background: #f6f8fc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 18px 8px 18px;
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}
.form-section.full {
    grid-template-columns: 1fr;
}
.form-group {
    margin-bottom: 12px;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
    color: #374151;
    letter-spacing: 0.01em;
    word-break: break-word;
    max-width: 100%;
}
.form-group input,
.form-group select {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 7px;
    font-size: 1.05rem;
    background: #f9fafb;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(80,112,255,0.03);
    max-width: 100%;
    overflow-x: auto;
}
.form-group input:focus,
.form-group select:focus {
    border-color: #4f8cff;
    outline: none;
    box-shadow: 0 0 0 2px #e0e7ff;
}
.form-group input[type="file"] {
    background: #fff;
    padding: 10px 0 10px 0;
    border: 1.5px solid #d1d5db;
    border-radius: 7px;
    font-size: 1em;
    max-width: 100%;
    overflow-x: auto;
    transition: border 0.2s, box-shadow 0.2s;
}
.form-group input[type="file"]:focus {
    border-color: #4f8cff;
    box-shadow: 0 0 0 2px #e0e7ff;
}
.form-group.checkbox-group {
    display: flex;
    align-items: center;
    grid-column: span 2;
}
.form-group.checkbox-group label {
    margin-left: 8px;
    margin-bottom: 0;
    font-weight: 400;
}
.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}
.btn, .next-btn, .prev-btn, .submit-btn {
    background: linear-gradient(90deg, #4f8cff 0%, #2563eb 100%);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 7px;
    font-size: 1.08rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(80,112,255,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    outline: none;
    letter-spacing: 0.01em;
}
.prev-btn {
    background: #b0b7c3;
    color: #fff;
    box-shadow: none;
    background: linear-gradient(90deg, #b0b7c3 0%, #6b7280 100%);
}
.next-btn:hover, .submit-btn:hover, .btn:hover {
    background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(80,112,255,0.13);
}
.prev-btn:hover {
    background: linear-gradient(90deg, #6b7280 0%, #b0b7c3 100%);
    transform: translateY(-2px) scale(1.03);
}
input.error, select.error {
    border-color: #e53e3e;
    background: #fff5f5;
}
.form-group .error-message {
    color: #e53e3e;
    font-size: 0.97em;
    margin-top: 4px;
    background: #fff0f0;
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(229,62,62,0.07);
}
#reviewSection {
    background: #f9fafb;
    border-radius: 8px;
    padding: 22px 18px;
    margin-bottom: 18px;
    font-size: 1.08em;
    box-shadow: 0 1px 4px rgba(80,112,255,0.04);
}
#reviewSection h3 {
    color: #2563eb;
    margin-top: 0.7em;
    margin-bottom: 0.3em;
    font-size: 1.13em;
}
#reviewSection ul {
    margin: 0 0 0.7em 0;
    padding-left: 1.2em;
}
@media (max-width: 900px) {
    .wizard-container {
        max-width: 98vw;
        padding: 18px 2vw 18px 2vw;
    }
    .form-section {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .wizard-container {
        padding: 10px 2px 18px 2px;
    }
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    .btn, .next-btn, .prev-btn, .submit-btn {
        width: 100%;
    }
    .wizard-steps-labels {
        font-size: 0.85em;
    }
    .form-group input,
    .form-group select {
        font-size: 1em;
        padding: 10px 8px;
    }
    .form-step h2 {
        font-size: 1.1em;
    }
    .form-section {
        padding: 10px 6px 2px 6px;
    }
} 