/**
 * Quiklie Payment Gateway - Checkout Styles
 * Version: 1.0.1
 */

/* Payment method label */
.payment_method_quiklie label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment_method_quiklie label img {
    max-height: 28px;
    width: auto;
}

/* S2S Inline Card Form */
#quiklie-s2s-card-form .form-row {
    margin-bottom: 12px;
}

#quiklie-s2s-card-form label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

#quiklie-s2s-card-form input[type="text"],
#quiklie-s2s-card-form input[type="password"] {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

#quiklie-s2s-card-form input[type="text"]:focus,
#quiklie-s2s-card-form input[type="password"]:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

/* OTP Section */
.quiklie-otp-section h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.quiklie-otp-section p {
    margin: 0 0 16px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

#qk-otp:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

#qk-otp-btn:hover {
    background: #1b5e20;
}

#qk-otp-btn:disabled {
    background: #a5d6a7;
    cursor: not-allowed;
}
