/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.float-right {
    float: right !important;
}

.d-inline-block {
    display: inline-block !important;
}

.mb-3{
    margin-bottom: 1rem !important;
}

/* ================================
   Alpha SMS - OTP Checkout Popup
   ================================ */

.alpha-sms-otp-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999998;
}

.alpha-sms-otp-backdrop.active {
    display: block;
}

body.alpha-sms-modal-open {
    overflow: hidden;
}

#alpha_sms_otp_checkout {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 360px;
    background: #fff;
    padding: 28px 24px;
    border: 2px solid #e91e8c;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    text-align: center;
}

#alpha_sms_otp_checkout .alpha_sms-otp-message {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

#alpha_sms_otp_checkout .alpha_sms-generate-otp label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}

#alpha_sms_otp_checkout #wc_checkout_resend_otp {
    float: none;
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #777;
}

#alpha_sms_otp_checkout input#otp_code {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    font-size: 20px;
    letter-spacing: 6px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#alpha_sms_otp_checkout .alpha_sms-otp-submit-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background: #e91e8c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#alpha_sms_otp_checkout .alpha_sms-otp-submit-btn:hover {
    background: #c8106f;
}

#alpha_sms_otp_checkout .alpha_sms-otp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    #alpha_sms_otp_checkout {
        width: 88%;
        padding: 22px 18px;
    }
}
