/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * SPDX-License-Identifier: AFL-3.0
 *
 * Phase 1 local card inputs — styled to match PayPal iframe container appearance.
 */

#ps-local-phase > div {
    margin-bottom: 16px;
}

#ps-local-phase .form-control-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 6px;
}

/* Override Bootstrap form-control grey background to match PayPal's white inputs */
#ps-local-phase .form-control {
    background-color: #fff;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #2c2e2f;
    height: auto;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#ps-local-phase .form-control:focus {
    border-color: #0070ba;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(0, 112, 186, 0.18);
}

#ps-local-phase .form-control::placeholder {
    color: #adb5bd;
}

#ps-local-phase .form-control.ps-input-error {
    border-color: #dc3545;
}

/* Error message — shown only when JS sets display:block */
#ps-local-phase .ps-local-error {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

/* Continue button — full width, matching site primary style */
#ps-local-phase #ps-local-next {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 12px 20px;
    font-size: 14px;
}

