.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    width: 100%;
}

.progress-container {
    width: 100%;
    background-color: #4f555b;
    border-radius: 10px;
    height: 8px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1a4f32 0%, #28a745 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 16.67%; /* 1/6 steps */
}

.progress-text {
    text-align: left;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 10px;
    position: relative;
}

.step.active {
    background-color: #1a4f32;
    color: white;
}

.step.completed {
    background-color: #28a745;
    color: white;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: #e9ecef;
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step.completed::after {
    background-color: #28a745;
}

.registration-step {
    display: none;
}

.registration-step.active {
    display: block;
}

.step-description {
    text-align: left;
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}
.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-back {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
}
.btn-back:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #495057;
}
.verification-code-input {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.verification-code-input input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid #ced4da;
    border-radius: 8px;
}

.verification-code-input input:focus {
    border-color: #1a4f32;
    outline: none;
}
