/* Basic modal styles for OTP popup - minimal and responsive */
.eotp-modal{
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.eotp-modal-content{
    background: #fff;
    padding: 22px;
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
}
.eotp-close{
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}
.eotp-step h3{
    margin-top: 0;
    margin-bottom: 10px;
}
.eotp-step p{ margin: 6px 0 12px; color:#444; }
.eotp-step input[type="email"],
.eotp-step input[type="text"]{
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}
.eotp-step .button{
    display: inline-block;
    padding: 10px 14px;
    background: #21759b;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.eotp-msg{ color: #c0392b; margin-top:8px; font-size:13px; }
@media (max-width:480px){
    .eotp-modal-content{ padding:16px; border-radius:6px; }
}
