.quickmove-otp-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
}
.phone-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#calling_code {
    min-width: 50px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.phone-row input[type="tel"] {
    flex-grow: 1;
}
.phone-row input {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
#sendOTPBtn,#verifyOTPBtn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}
#otpModal {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background: rgba(0,0,0,0.5);
    z-index:1000;
}
.otp-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 320px;
    margin: 200px auto;
    text-align: center;
}
.otp-content input {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    font-size: 16px;
}

/*.grecaptcha-badge {*/
/*    bottom: 20px !important;*/
/*    left: 20px !important;*/
/*}*/

