/* ===== REGISTRO ===== */
.registro-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 60px);
}

/* COLUMNA IZQUIERDA */
.registro-info {
    background: #2D1B8E;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.registro-info h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.registro-info h1 span {
    color: #F0A500;
}

.registro-info > p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.beneficios {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.beneficio {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ben-icon {
    background: #F0A500;
    color: #1C1240;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.ben-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.ben-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}

/* COLUMNA DERECHA */
.registro-form-wrap {
    background: #F7F5FF;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #E5E0FF;
    width: 100%;
    max-width: 440px;
}

/* STEPS */
.form-steps {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #E5E0FF;
    padding-bottom: 1rem;
}

.form-step {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #7B6FA0;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
}

.form-step.active {
    background: #EDE9FF;
    color: #2D1B8E;
}

/* CONTENIDO PASOS */
.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
}

/* CAMPOS */
.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1C1240;
    margin-bottom: 5px;
}

.opcional {
    font-weight: 400;
    color: #7B6FA0;
    font-size: 0.78rem;
}

.field input,
.field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E0FF;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1C1240;
    background: #fff;
    outline: none;
    transition: border 0.2s;
}

.field input:focus,
.field select:focus {
    border-color: #2D1B8E;
}

.field-check {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 0.82rem;
    color: #7B6FA0;
}

.field-check input {
    margin-top: 3px;
    flex-shrink: 0;
}

.field-check a {
    color: #2D1B8E;
    font-weight: 600;
}

/* BOTONES */
.form-btns {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
}

.btn-siguiente {
    width: 100%;
    background: #2D1B8E;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.btn-siguiente:hover {
    background: #1e1260;
}

.btn-atras {
    background: transparent;
    color: #7B6FA0;
    border: 1px solid #E5E0FF;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.btn-registrar {
    flex: 1;
    background: #F0A500;
    color: #1C1240;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s;
}

.btn-registrar:hover {
    transform: scale(1.02);
}

/* ÉXITO */
.exito {
    text-align: center;
    padding: 2rem 0;
}

.exito-icon {
    width: 60px;
    height: 60px;
    background: #1D9E75;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.exito h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1C1240;
    margin-bottom: 0.5rem;
}

.exito p {
    color: #7B6FA0;
    font-size: 0.9rem;
}
