.progress-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 30px;
    max-width: 200px;
}

.step {
    height: 4px;
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.step.active {
    background-color: #FFCC00;
}

input {
    width: 100%;
    padding: 16px 16px 16px 48px !important;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    font-size: 16px;
    background-repeat: no-repeat !important;
    background-position: 15px center !important;
    background-size: 20px auto;
    box-sizing: border-box;
    outline: none;
    margin-bottom: 22px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
    border-color: #FFCC00;
}

input:focus::placeholder {
    color: transparent;
}

input:focus, input:not(:placeholder-shown) {
    background-image: none !important;
}

._card_type_active {
    background-position: calc(100% - 15px) center !important;
    background-size: 35px auto !important;
    padding-right: 55px !important;
    transition: none !important;
}

.input-error {
    border: 2px solid #ff4d4d !important;
    background-color: #fff5f5 !important;
}

#btn_pay {
    width: 100% !important;
    background-color: #FFCC00 !important;
    color: #000 !important;
    border: none !important;
    padding: 18px !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    cursor: pointer !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    -webkit-appearance: none;
    appearance: none;
    
    margin-top: 45px !important; 
}

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-summary {
    text-align: center;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}