.otp-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 370px;
}
.otp-step1,
.otp-step2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.otp-container h2 {
    color: #036;
    font-size: 26px;
    margin-bottom: 0;
}


.otp-container p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}
.wpt-phone-number {
    width: 100%;
    height: 40px;
    text-align: center;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    margin-bottom: 10px;
    font-size: 16px;
}

.wpt-phone-number:focus {
    border-color: #003366;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 51, 102, 0.5);
}

.btn_get_otp {
    border: 0;
    width: 100%;
    height: 40px;
    background: #ed5929;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}






.otp-step2 .otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}
.otp-step2 .otp-inputs input {
    text-align: center;
    font-size: 16px;
}

.otp-step2 > .otp-container > p {
    line-height: 19px;
    margin-bottom: 0;
}    

.otp-box {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.otp-box:focus {
    border-color: #003366;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 51, 102, 0.5);
}

.resend-text {
    font-size: 12px;
    color: #666;
}

.resend-link {
    color: #003366;
    cursor: pointer;
}
.resend-disabled {
    color: gray;
    pointer-events: none;
}


.wpt-loading {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000000;
    border-radius: 50%;
    animation: wptSpin 1s linear infinite;
}
  
  /* Animation keyframes */
  @keyframes wptSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }