.msg91-verify-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Container Styling */
.msg91-otp-section,
#msg91-login-form-container {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
    margin-top: 10px;
    border-left: 3px solid #94231E;
    /* Primary Red border */
}

/* Buttons */
/* Buttons */

/* PRIMARY (Verify/Submit/Toggle) - RED BG, WHITE TEXT */
body #msg91-verify-otp-btn,
body #msg91-toggle-login-otp,
body #msg91-login-verify-btn {
    background-color: #94231E !important;
    /* Primary Red */
    border-color: #94231E !important;
    color: #fff !important;
    transition: all 0.3s ease;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

body #msg91-verify-otp-btn:hover,
body #msg91-toggle-login-otp:hover,
body #msg91-login-verify-btn:hover {
    background-color: #D7B344 !important;
    /* Secondary Gold */
    border-color: #D7B344 !important;
    color: #fff !important;
}

/* SECONDARY (Send/Resend) - WHITE BG, RED TEXT */
body #msg91-send-otp-btn,
body #msg91-login-send-otp-btn {
    background-color: #ffffff !important;
    border: 2px solid #94231E !important;
    color: #94231E !important;
    transition: all 0.3s ease;
    text-shadow: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    font-weight: 500;
}

/* Specific spacing for Login "Resend" button to separate from Verify button */
body #msg91-login-send-otp-btn {
    margin-bottom: 20px;
}

body #msg91-send-otp-btn:hover,
body #msg91-login-send-otp-btn:hover {
    background-color: #f5f5f5 !important;
    /* Light Grey (Not Red) */
    color: #94231E !important;
    border-color: #94231E !important;
}

/* Secondary/Alt Buttons (if needed) */
button.um-alt {
    background: #eee !important;
    color: #333 !important;
    border-color: #eee !important;
}

button.um-alt:hover {
    background: #e0e0e0 !important;
}

/* Messages */
.msg91-message.success,
.msg91-login-message.success {
    color: #2e7d32;
    /* darker green for contrast */
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

.msg91-message.error,
.msg91-login-message.error {
    color: #94231E;
    /* Primary Red for errors */
    font-size: 13px;
    margin-top: 5px;
}

.um-disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: not-allowed;
}