:root { --hp-yellow: #FFCC00; }
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; height: 100%; background: #fff; font-family: -apple-system, sans-serif; }


#initial_loader {
    position: fixed; inset: 0; background: #fff; z-index: 10000;
    display: flex; justify-content: center; align-items: center;
}
.loading-circle {
    width: 60px; height: 60px; border: 5px solid #f3f3f3; border-top: 5px solid var(--hp-yellow);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.hp-app-container { display: none; flex-direction: column; min-height: 100vh; }


.content-scroll { padding: 60px 20px 30px; }

.progress-bar-container { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
.p-step { width: 30%; height: 6px; background: #E5E5EA; border-radius: 10px; }
.p-step.active { background: var(--hp-yellow); }


.input-group { position: relative; margin-bottom: 20px; }

input {
    width: 100%; height: 60px;
    padding: 0 15px 0 52px !important; 
    border: 1px solid #E5E5EA; border-radius: 12px;
    background-color: #F9F9FB; font-size: 16px;
    background-repeat: no-repeat !important;
    background-position: 18px center !important;
    background-size: 22px auto;
    outline: none; transition: all 0.2s ease;
}

input:focus, input:not(:placeholder-shown) {
    border-color: var(--hp-yellow);
    background-image: none !important;
    background-color: #fff;
    padding-left: 15px !important;
}

.btn-main {
    width: 100%; height: 60px; background: var(--hp-yellow); border: none;
    border-radius: 15px; font-weight: 800; font-size: 18px; cursor: pointer;
    display: flex; justify-content: center; align-items: center;
}