* {
    box-sizing: border-box;
    font-family: "Saira";
}
body {
    background: #fff;
    margin: 0;
    padding: 0;
    color: #333;
}
main {
    padding: 20px;
}
.container {
    max-width: 720px;
    margin: 0 auto;
}
h1 {
    text-align: center;
    color: #0055a5;
}
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 20px;
}
.card h2 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #004080;
}
label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}
input,
select {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.info {
    font-size: 0.85em;
    color: #666;
    margin-top: -10px;
    margin-bottom: 10px;
}
.submit-btn {
    margin-top: 30px;
    width: 100%;
    background: #0055a5;
    color: white;
    padding: 14px;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}
.submit-btn:hover {
    background: #003d7a;
}

.progress-container {
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    height: 12px;
    overflow: hidden;
}
#progress-bar {
    height: 100%;
    background-color: #0055a5;
    width: 0%;
    transition: width 0.3s ease-in-out;
}
.back-btn {
    background-color: #656565;
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 10px;
}
.back-btn:hover {
    background-color: #6b6b6b;
}
.button-row {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.submit-btn,
.back-btn {
    min-width: 120px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.button-row {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.button {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    line-height: 1;
}
.back-btn {
    background-color: #656565;
    color: #fff;
}
.back-btn:hover {
    background-color: #656565;
}
.submit-btn {
    background-color: #0055a5;
    color: #fff;
}
.submit-btn:hover {
    background-color: #003d7a;
}
