/* OM_MobileOtp: OTP Login Styles */

.otp-login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #999;
}

.otp-login-divider::before,
.otp-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.otp-login-divider span {
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.otp-login-box {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    max-width: 480px;
    margin: 0 0 24px 0;
}

.otp-login-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.otp-login-box .field {
    margin-bottom: 16px;
}

.otp-login-box .label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.otp-login-box .input-text {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.otp-login-box .input-text:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}

.otp-code-input {
    letter-spacing: 8px;
    font-size: 20px !important;
    text-align: center;
    font-weight: 700;
}

.otp-sent-msg {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
}

.otp-mobile-display {
    font-weight: 700;
    display: block;
    margin-top: 4px;
}

.otp-timer-wrapper {
    font-size: 13px;
    color: #777;
    margin-bottom: 16px;
}

.otp-countdown {
    font-weight: 700;
    color: #e53935;
    margin-left: 6px;
}

.otp-verify-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.otp-verify-actions .action {
    flex: 1;
    min-width: 120px;
    height: 44px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.otp-send-btn {
    width: 100%;
    height: 44px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.action.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.otp-change-mobile {
    font-size: 13px;
    color: #1a73e8;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
}

.otp-change-mobile:hover {
    text-decoration: underline;
}

.otp-message {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.otp-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.otp-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@media (max-width: 640px) {
    .otp-login-box {
        padding: 18px 14px;
    }

    .otp-verify-actions {
        flex-direction: column;
    }
}