.pll-returning-customer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
}

.pll-returning-customer p {
    margin-bottom: 0 !important;
}

.pll-returning-customer-btn {
    font-size: 16px;
    color: #FFF;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
}

.pll-returning-customer-btn:hover {
    text-decoration: underline;
    color: #FFF;
}

.pll-modal-dialog {
    max-width: 450px;
}

.pll-modal-header {
    padding: 10px 16px;
    border: none;
}

.pll-modal {
    padding: 16px 40px 30px;
}

.pll-modal .form-control {
    margin: 0;
}

.pll-modal .form-control:focus {
    border-color: #e8e8e8;
    box-shadow: none;
}

.pll-modal h3 {
    color: #635c5c;
    font-size: 20px;
    margin-bottom: 15px;
}

.pll-primary-button {
    background: #0077FF;
    border-radius: 8px;
    border: none;
    box-shadow: none !important;
    color: white !important;
    display: block;
    height: 40px;
    margin: auto;
    width: 220px;
    margin-top: 30px;
}

.pll-primary-button:focus {
    outline: none;
}

.pll-button-w-150 {
    width: 150px;
}

.pll-error {
    color: #8a1f11;
    display: inline-block;
    margin-top: 10px;
}

.pll-form-error {
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.pll-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pll-modal {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pll-close {
    position: absolute;
    top: 5px;
    right: 16px;
    font-size: 30px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}

.pll-modal-disclaimer {
    margin-top: 30px;
}

.pll-modal-disclaimer a {
    color: #635c5c !important;
    font-weight: 700;
}