/* Stepper Component Styles */
.stepper-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Mobile verification code input styles */
[data-focus-input-init] {
    border: 2px solid #6b7280 !important; /* Darker border */
    background-color: #f9fafb !important; /* Light background for contrast */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    caret-color: #8463c5; /* Purple cursor */
}

[data-focus-input-init]:hover {
    border-color: #8463c5 !important;
}

[data-focus-input-init]:focus {
    border-color: #8463c5 !important;
    box-shadow: 0 0 0 3px rgba(132, 99, 197, 0.3);
    background-color: white !important;
}

.stepper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 48rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    background-color: #8463c5; /* TheraPlatform purple */
}

.step-circle.active {
    box-shadow: 0 0 0 4px rgba(132, 99, 197, 0.2);
}

.step-circle.completed {
    background-color: #10b981; /* green-500 */
}

.step-circle.inactive {
    background-color: #d1d5db; /* gray-300 */
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #8463c5; /* TheraPlatform purple */
}

.step-label.inactive {
    color: #6b7280; /* gray-500 */
}

.step-connector {
    flex-grow: 1;
    height: 0.25rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 1.25rem;
    border-radius: 0.25rem;
    background-color: #e5e7eb; /* gray-200 */
}

.step-connector.active {
    background-color: #8463c5; /* TheraPlatform purple */
}
