
/* === OTP PRO STYLE AVANCÉ === */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700;900&display=swap');

.hc-otp-box {
    max-width: 500px;
    margin: 60px auto;
    padding: 35px;
    border-radius: 18px;
    background: linear-gradient(to bottom right, #4b6cb7, #182848);
    font-family: 'Tajawal', sans-serif;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #fff;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-in-out;
}

.hc-otp-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

.hc-otp-box h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

.hc-otp-box input[type="text"],
.hc-otp-box input[type="number"],
.hc-otp-box input[type="submit"] {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border-radius: 10px;
    border: none;
    font-size: 17px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.hc-otp-box input[type="text"],
.hc-otp-box input[type="number"] {
    background: rgba(255,255,255,0.9);
    color: #333;
}

.hc-otp-box input[type="submit"] {
    background: #ff6b00;
    color: white;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.hc-otp-box input[type="submit"]:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
