.registration-wrapper {
    background-color: #f5f5f7;
    padding: 60px 0;
}

.apple-form-card {
    background: #ffffff;
    max-width: 800px; /* Un poco más ancho para los campos en fila */
    margin: 0 auto;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    color: #86868b;
    letter-spacing: 1px;
    margin: 30px 0 15px;
    border-bottom: 1px solid #f5f5f7;
    padding-bottom: 10px;
}

/* Sistema de filas Apple */
.apple-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas por defecto */
    gap: 15px;
    margin-bottom: 15px;
}

.apple-row.three-cols {
    grid-template-columns: 1fr 1fr 1fr; /* Tres columnas para ubicación */
}

.apple-group input, .apple-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 15px;
    background-color: #ffffff;
    transition: all 0.2s;
}

.apple-group input:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
}

/* Botón y Footer */
.form-footer {
    margin-top: 40px;
    text-align: center;
}

.terms-text {
    font-size: 12px;
    color: #86868b;
    margin-bottom: 20px;
}

.apple-btn-primary {
    padding: 16px 40px;
    background: #0071e3;
    color: white;
    border-radius: 25px; /* Más redondeado para diferenciar del login */
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.apple-btn-primary:hover {
    transform: scale(1.03);
    background: #0077ed;
}

/* Responsive para celulares */
@media (max-width: 768px) {
    .apple-row, .apple-row.three-cols {
        grid-template-columns: 1fr;
    }
    .apple-form-card {
        padding: 25px;
    }
}