html,
body {
    font-family: 'Prompt', 'Helvetica Neue', Arial, 'Liberation Sans', sans-serif;
}

html {
    background: #FFF
}

a {
    color: #c60033
}

.content {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 32px 24px;
}

.register-header {
    margin-bottom: 24px;
}

.register-header img {
    max-width: 80px;
}

.register-header h1 {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #c60033;
    margin-bottom: 0.5rem;
}

.register-subtitle {
    font-size: 1rem;
    color: #6c757d;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    gap: 0;
}

.step-indicator .step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dee2e6;
    color: #495057;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
    transition: background 0.3s, color 0.3s;
    border: 2px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-indicator .step.active {
    background: #c60033;
    color: #fff;
    border-color: #c60033;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08);
}

.step-indicator .step.completed {
    background: #198754;
    color: #fff;
    border-color: #198754;
}

.step-indicator .step .checkmark {
    font-size: 1.5rem;
    color: #fff;
}

.step-indicator .step-label {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 4px;
    color: #6c757d;
    text-align: center;
}

.step-indicator .step.active .step-label,
.step-indicator .step.completed .step-label {
    color: #fff;
}

.step-indicator .step-line {
    flex: 1 1 40px;
    height: 4px;
    background: #dee2e6;
    margin: 0 0px;
    border-radius: 2px;
    position: relative;
    top: -8px;
}

.step-indicator .step.completed~.step-line {
    background: #198754;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
}

.form-group .required {
    color: red;
    font-size: 16px;
}

.header-info {
    border-left: 7px solid #c60033;
    border-bottom: 2px solid #dee2e6;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-top: 40px;
    margin-left: -15px;
    font-size: 18px;
    font-weight: 500;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
    opacity: 1;
    font-family: 'Prompt', 'Helvetica Neue', Arial, 'Liberation Sans', sans-serif;
    font-size: 0.98em;
    letter-spacing: 0.01em;
}

select {
    background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #ddd;
    -webkit-appearance: none;
    background-position-x: 97%;
}

.btn-primary {
    background: #c60033;
    border-color: #950127
}



.btn-primary:hover {
    background: #950127
}

@media (max-width: 600px) {
    .step-indicator {
        flex-direction: column;
        gap: 8px;
    }

    .step-indicator .step-line {
        width: 4px;
        height: 32px;
        margin: 0 auto;
    }
}