/* ===== HERO ===== */
.otp-hero {
    height: 120vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* ===== BOX ===== */
.otp-box {
    width: 300px;
    height: 350px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    text-align: center;
    color: #ddd;
}

/* ===== ICON ===== */
.lock-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

/* ===== TEXT ===== */
.otp-text {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 20px;
}

/* ===== OTP INPUTS ===== */
.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.otp-inputs input {
    width: 40px;
    height: 45px;
    text-align: center;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
}

/* ===== BUTTON ===== */
.otp-btn {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    background: black;
    color: white;
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 15px;
}

/* ===== RESEND TEXT ===== */
.resend-text {
    font-size: 10px;
    color: #aaa;
}

.resend-text span {
    color: white;
}

/* ===== BACK LINK ===== */
.back-link {
    display: block;
    margin-top: 10px;
    font-size: 10px;
    color: #aaa;
    text-decoration: none;
}

.back-link:hover {
    color: white;
}


/* ===== RESPONSIVE STYLES ===== */

/* For Tablets and smaller devices (max-width: 768px) */
@media (max-width: 768px) {
    .otp-hero {
        height: 100vh; /* Adjusts hero height to fit mobile viewports better */
        padding: 10px;
    }

    .otp-box {
        width: 90%;
        max-width: 300px; /* Prevents it from stretching too wide */
        height: auto; /* Allows the box to grow naturally based on content */
        padding: 20px;
    }

    .otp-inputs input {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* For Small Mobile Devices (max-width: 400px) */
@media (max-width: 400px) {
    .otp-box {
        padding: 15px;
    }

    .otp-inputs input {
        width: 32px;
        height: 38px;
    }
}