/* OTP Authentication Styles */

.pintomar-otp-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.otp-step {
    text-align: center;
}

.otp-step h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
}

.otp-step p {
    font-size: 14px;
    color: var(--secondary-text);
    margin: 0 0 24px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-align: right;
}

.form-group input[type="tel"]:not(.otp-input) {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
}

.btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 12px;
}

.btn-primary {
    background: var(--primary, #3b82f6);
    color: white;
}

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
}

.otp-container {
    display: flex;
    gap: 12px;
    direction: ltr;
    justify-content: center;
    margin: 0 0 24px 0;
}

.otp-input {
    width: 50px !important;
    height: 55px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 0 !important;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
}

.otp-input:focus {
    border-color: var(--primary);
}

.otp-message {
    margin: 20px 0 0 0;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.otp-message:not(:empty) {
    display: block;
}

.otp-message.success {
    background: #d4edda;
    color: #155724;
}

.otp-message.error {
    background: #f8d7da;
    color: #721c24;
}

#otp-mobile {
    text-align: left;
    direction: ltr;
}