.ea-wrap {
    min-height: 100vh;
    background: linear-gradient(160deg, #E6F1FB 0%, #C8DFF5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
.ea-card-shadow { width: 100%; max-width: 420px; position: relative; }
.ea-tab {
    position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
    width: 180px; height: 36px; background: rgba(255,255,255,0.35);
    border-radius: 10px 10px 0 0;
}
.ea-tab2 {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 22px; background: rgba(255,255,255,0.55);
    border-radius: 8px 8px 0 0;
}
.ea-card {
    background: #F4F8FD; border: 0.5px solid #D0E4F5;
    border-radius: 20px; padding: 2.5rem 2.2rem 2rem;
    width: 100%; box-sizing: border-box; position: relative; z-index: 1;
}
.ea-logo { text-align: center; margin-bottom: 1.8rem; }
.ea-logo-icon {
    width: 64px; height: 64px; border-radius: 18px; background: #185FA5;
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.ea-title { font-size: 22px; font-weight: 600; margin: 0; color: #0C447C; letter-spacing: -0.3px; }
.ea-subtitle { font-size: 11px; color: #85B7EB; margin: 5px 0 0; letter-spacing: 0.6px; font-weight: 500; }
.ea-alert {
    background: #FEE2E2; border: 0.5px solid #FCA5A5; border-radius: 8px;
    padding: 10px 14px; font-size: 13px; color: #B91C1C; margin-bottom: 1rem;
}
.ea-field { margin-bottom: 14px; }
.ea-field-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.ea-label { font-size: 12px; color: #2B8EF0; display: block; margin-bottom: 7px; font-weight: 600; letter-spacing: 0.5px; }
.ea-link { font-size: 12px; color: #85B7EB; text-decoration: none; }
.ea-input {
    width: 100%; box-sizing: border-box; background: #ffffff;
    border: 1px solid #D0E4F5; border-radius: 10px; padding: 12px 16px;
    font-size: 14px; color: #1a2f4a; outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.ea-input::placeholder { color: #A0BEDD; }
.ea-input:focus { border-color: #2B8EF0; box-shadow: 0 0 0 3px rgba(43,142,240,0.1); }
.ea-btn {
    width: 100%; background: #185FA5; color: #fff; border: none;
    border-radius: 10px; padding: 13px; font-size: 15px; font-weight: 500;
    cursor: pointer; margin: 1.5rem 0; letter-spacing: 0.2px; transition: background .2s;
}
.ea-btn:hover { background: #0C447C; }
.ea-btn:disabled { background: #85B7EB; cursor: not-allowed; }
.ea-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.ea-line { flex: 1; height: 0.5px; background: #D0E4F5; }
.ea-divider-text { font-size: 11px; color: #85B7EB; letter-spacing: 0.5px; font-weight: 500; }
.ea-social { display: flex; gap: 12px; margin-bottom: 1.5rem; }
.ea-social-btn {
    flex: 1; padding: 11px; border-radius: 10px; border: 1px solid #D0E4F5;
    background: #fff; display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 13px; color: #185FA5; cursor: pointer; transition: background .2s;
}
.ea-social-btn:hover { background: #F0F6FD; }
.ea-register { text-align: center; font-size: 13px; color: #85B7EB; margin: 0; }
.ea-register-link { color: #185FA5; text-decoration: none; font-weight: 600; }

/* ─── Registro ─────────────────────────────────────────── */
.reg-card {
    background: #F4F8FD; border: 0.5px solid #D0E4F5;
    border-radius: 20px; padding: 2.5rem 2.2rem 2rem;
    width: 100%; max-width: 620px; box-sizing: border-box;
}
.reg-step-title { font-size: 13px; color: #85B7EB; margin: 0 0 1.5rem; font-weight: 500; }
.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reg-btns { display: flex; gap: 12px; margin-top: 1.5rem; }
.ea-btn-outline {
    flex: 1; background: #fff; color: #185FA5;
    border: 1px solid #D0E4F5; border-radius: 10px;
    padding: 13px; font-size: 15px; font-weight: 500;
    cursor: pointer; transition: background .2s;
}
.ea-btn-outline:hover { background: #F0F6FD; }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.plan-card {
    background: #fff; border: 1px solid #D0E4F5; border-radius: 12px;
    padding: 1rem; cursor: pointer; transition: border-color .2s, background .2s;
}
.plan-card:hover { border-color: #185FA5; }
.plan-selected { border-color: #185FA5 !important; background: #E6F1FB !important; }
.plan-nombre { margin: 0; font-weight: 600; color: #0C447C; font-size: 15px; }
.plan-precio { margin: 4px 0; font-size: 18px; font-weight: 600; color: #185FA5; }
.plan-desc { margin: 0; font-size: 12px; color: #85B7EB; }
.reg-success { text-align: center; padding: 1rem 0; }
.reg-success-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: #185FA5; color: #fff; font-size: 28px;
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.reg-success h3 { color: #0C447C; margin: 0 0 0.5rem; }
.reg-success p { color: #85B7EB; font-size: 14px; }

/* ─── Autocompletar ────────────────────────────────────── */
.autocomplete-list {
    background: #fff; border: 1px solid #D0E4F5; border-radius: 0 0 10px 10px;
    max-height: 200px; overflow-y: auto; margin-top: -1px;
}
.autocomplete-item {
    padding: 10px 14px; font-size: 13px; color: #1a2f4a;
    cursor: pointer; transition: background .15s; border-bottom: 0.5px solid #EDF4FC;
}
.autocomplete-item:hover { background: #F0F6FD; }
.act-codigo { color: #85B7EB; font-size: 11px; margin-right: 6px; font-weight: 600; }
.act-selected {
    margin-top: 8px; background: #E6F1FB; border: 1px solid #B5D4F4;
    border-radius: 8px; padding: 8px 12px; font-size: 13px; color: #185FA5;
}
.req { color: #E24B4A; margin-left: 2px; }
.req-opt { color: #85B7EB; font-size: 10px; font-weight: 400; }
