.container-auth {
    width: 100%;
    max-width: 500px;
    margin-top: 80px;
}

.back {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1d2836;
    margin-bottom: 25px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 10px;
}

.helper {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 20px;
}

.progress {
    height: 4px;
    background-color: #e5edfb;
    border-radius: 2px;
    margin: 24px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #1177c3;
    width: 25%;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    margin-left: 10px;
}

.card {
    height: 100%;
    width: 100%;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 38px;
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    color: #111827;
}

input:focus {
    outline: none;
    border-color: var(--border-primary-dark);
}

button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--bg-button);
    border: none;
    border-radius: 8px;
}

button:disabled {
    background-color: var(--bg-button-disabled);
    cursor: default;
}

.secondary-link {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    color: var(--color-primary-dark);
}

.radio-group {
    display: flex;
    gap: 12px;
}

.radio-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
    background-color: #ffffff;
}

.radio-option input {
    display: none;
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #94a3b8;
    border-radius: 50%;
    position: relative;
}

.radio-option input:checked+.radio-option .custom-radio {
    border-color: #1177c3;
}

.radio-option input:checked+.custom-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #1177c3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.error {
    border: 1px solid var(--border-danger);
}

.error:focus {
    outline: none;
    border-color: var(--border-danger);
    box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.25);
}

.error-msg {
    color: var(--text-danger);
    font-size: 13px;
    font-weight: 600;
    min-height: 16px;
    padding: 8px;

}

@media (max-width: 480px) {
    .card {
        padding: 24px;
    }
}