﻿/* OTP Card */
.otp-card {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    animation: fadeIn 0.5s ease both;
}

/* OTP Inputs */
.otp-container {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    margin: 2rem 0;
}

.otp-input {
    width: 300px;
    height: 55px;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-weight: 600;
}

    .otp-input:focus {
        border-color: #1877F2;
        outline: none;
        box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.2);
    }

/* Resend */
.resend-wrapper {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

    .resend-wrapper .link {
        cursor: pointer;
        margin-left: 5px;
        color: #1877F2;
        font-weight: 600;
    }

/* Mobile */
@media (max-width: 480px) {
    .otp-container {
        gap: 0.5rem;
    }

    .otp-input {
        width: 200px;
        height: 50px;
        font-size: 1.3rem;
    }

    .otp-card {
        padding: 2rem 1.3rem;
    }
}
