/* Wrapper around login form */
.otp-login-wrapper {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Login input fields */
.otp-login-wrapper input {
    padding: 10px;
    margin: 5px;
    width: 200px;
}

/* Fullscreen dark overlay */
.otp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup box */
.otp-popup-inner {
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    width: auto;
    max-width: 90vw;
}

/* Input inside popup */
.otp-popup-inner input {
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 220px;
}

/* Close icon */
.otp-close {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 20px;
    color: #000;
}
