/* Reuse all styles from crew-registration.css */
@import url('../crew-registration/crew-registration.css');

/* Device OTP Input Styling */
.device-otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.device-otp-input:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
