.otp-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
}

.otp-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.otp-resend {
    text-align: center;
    margin-top: 20px;
}

.otp-resend p {
    margin: 5px 0;
    font-size: 14px;
}

.otp-resend a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.otp-resend a:hover {
    text-decoration: underline;
}
