select#wc_twilio_login_country {
    direction: ltr;
    padding-left: 30px;
}
.wc-twilio-otp-wrapper {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
    background: #fafafa;
}

.wc-twilio-otp-notice h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.wc-twilio-otp-notice p {
    margin: 0 0 10px;
}

.wc-twilio-otp-form {
    margin-top: 10px;
}

#wc-twilio-otp-messages,
#wc-twilio-login-messages {
    margin-bottom: 10px;
}

.wc-twilio-otp-message {
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 5px;
}

.wc-twilio-otp-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wc-twilio-otp-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wc-twilio-otp-actions button {
    margin-right: 5px;
}

.wc-twilio-login-wrapper h2 {
    margin-top: 0;
    margin-bottom: 10px;
}



/* OTP full page wrapper */
.otp-page-wrapper {
    border: none;
    background: #ffffff;
    padding: 0;
}

/* Center container similar to mobile app style */
.otp-container {
    max-width: 420px;
    margin: 40px auto;
    padding: 20px 16px 30px;
    background: #ffffff;
}

/* Title & description */
.otp-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.otp-desc {
    font-size: 14px;
    color: #555;
    margin: 0 0 20px;
}

/* Phone row */
.otp-phone-form {
    margin-top: 10px;
}

.otp-phone-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* Country dropdown */
.otp-country {
    width: 35%;
    padding: 12px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

/* Phone input */
.otp-phone {
    width: 65%;
    padding: 12px;
    font-size: 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    text-align: left;
    direction: ltr;
}

/* Primary button */
.otp-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 17px;
    border-radius: 12px;
    border: none;
    background: #111111;
    color: #ffffff;
    cursor: pointer;
}

/* Secondary button (resend) */
.otp-btn-secondary {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #111;
    cursor: pointer;
}

/* Note text */
.otp-note {
    margin-top: 12px;
    font-size: 12px;
    color: #777;
}

/* Messages */
.otp-messages {
    margin-bottom: 10px;
}

/* OTP code form */
.otp-code-form {
    margin-top: 10px;
}

.otp-code-label {
    font-size: 14px;
    margin-bottom: 12px;
}

.otp-code-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.otp-code-digit {
    width:50px;
    height:58px;
    font-size:26px;
    text-align:center;
    border-radius:12px;
    border:none;
    background:#f4f6f8;
    color:#0d1b2a;
    font-weight:600;
}

button#wc-twilio-login-resend-btn {
    background: none !important;
    border: 0 !important;
    color: #333333 !important;
    text-decoration: underline !important;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .otp-container {
        margin: 20px auto;
        padding: 16px 12px 24px;
    }
    /* Country dropdown */
    .otp-country {
        width: 35% !important;
    }
    
    /* Phone input */
    .otp-phone {
        width: 65% !important;
    }

}
