/* Login – styles spécifiques (switch canal OTP, etc.) */

.otp-channel-switch-wrapper {
    margin-bottom: 1rem;
}

.otp-channel-switch-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.otp-channel-switch {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #e9ecef;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #dee2e6;
}

.otp-channel-option {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #6c757d;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.otp-channel-option:hover {
    color: #495057;
    background: rgba(255, 255, 255, 0.5);
}

.otp-channel-option.active {
    background: #fff;
    color: #47bac1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.otp-channel-option:focus {
    outline: none;
}

.otp-channel-option:focus-visible {
    outline: 2px solid #47bac1;
    outline-offset: 2px;
}
