 * {
     font-family: 'Nunito', sans-serif;
 }

 :root {
     --color-primario: #007bff;
     --color-secundario: #0c498a;
     --blanco-color: #ffffff;
     --gris-proyecto: #969696;
     --tercer-azul: #1a73d3;
     --titulo-principal: 48px;
     --subtitulo-seccion: 30px;
     --titulo-bloque: 24px;
     --subtitulo-menor: 18px;
     --parrafos: 16px;
     --texto-auxiliar: 14px;
 }

 body {
     margin: 0;
     padding: 0;
     min-height: 100vh;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(191, 210, 248, 0.5) 100%);
 }

 .registro-container {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding: 40px 20px;
 }

 .registro-content {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
 }

 .row {
     background: var(--blanco-color);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
 }

 .form-section {
     padding: 50px 40px;
 }

 .image-section {
     min-height: 600px;
     position: relative;
 }

 .logo-header {
     text-align: center;
     margin-bottom: 20px;
 }

 .logo-registro {
     max-width: 180px;
     height: auto;
 }

 .logo-placeholder {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 28px;
     font-weight: 700;
     color: var(--color-primario);
 }

 .btn-azul {
     display: inline-block;
     /* Permite que los <a> se comporten como botones */
     text-align: center;
     text-decoration: none;
     /* Quita el subrayado de los enlaces */
     border-radius: 10px;
     width: 100%;
     background-color: var(--color-primario);
     color: var(--blanco-color);
     border: none;
     padding: 15px;
     font-size: var(--parrafos);
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn-azul:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
 }

 .logo-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, var(--color-primario) 0%, var(--tercer-azul) 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 24px;
 }

 .subtitle-registro {
     text-align: center;
     color: var(--gris-proyecto);
     font-size: var(--texto-auxiliar);
     margin-bottom: 30px;
 }

 /* Wizard Progress Bar */
 .wizard-progress {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 40px;
     position: relative;
 }

 .wizard-progress::before {
     content: '';
     position: absolute;
     top: 20px;
     left: 0;
     right: 0;
     height: 3px;
     background: #e9ecef;
     z-index: 0;
 }

 .progress-line {
     position: absolute;
     top: 20px;
     left: 0;
     height: 3px;
     background: var(--color-primario);
     z-index: 1;
     transition: width 0.3s ease;
 }

 .wizard-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     position: relative;
     z-index: 2;
     flex: 1;
 }

 .step-circle {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #e9ecef;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     color: var(--gris-proyecto);
     margin-bottom: 8px;
     transition: all 0.3s ease;
 }

 .wizard-step.active .step-circle {
     background: var(--color-primario);
     color: var(--blanco-color);
     box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
 }

 .wizard-step.completed .step-circle {
     background: var(--tercer-azul);
     color: var(--blanco-color);
 }

 .step-label {
     font-size: 12px;
     color: var(--gris-proyecto);
     text-align: center;
 }

 .wizard-step.active .step-label {
     color: var(--color-primario);
     font-weight: 600;
 }

 /* Form Steps */
 .wizard-form-step {
     display: none;
     animation: fadeIn 0.3s ease;
 }

 .wizard-form-step.active {
     display: block;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateX(20px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .form-row-custom {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
     margin-bottom: 15px;
 }

 .form-group-custom {
     margin-bottom: 15px;
 }

 .form-label-custom {
     font-size: var(--texto-auxiliar);
     color: #333;
     margin-bottom: 5px;
     display: block;
     font-weight: 500;
 }

 .campos-formulario {
     border-radius: 10px;
     background: #BFD2F8;
     border: none;
     padding: 12px 18px;
     font-size: var(--texto-auxiliar);
     width: 100%;
     color: #333;
 }

 .campos-formulario::placeholder {
     color: var(--tercer-azul);
     opacity: 0.7;
 }

 .campos-formulario:focus {
     outline: none;
     background: #d4e3f9;
     box-shadow: 0 0 0 3px rgba(191, 210, 248, 0.3);
 }

 select.campos-formulario {
     cursor: pointer;
     color: var(--tercer-azul);
 }

 select.campos-formulario option {
     background: white;
     color: #333;
 }

 /* Wizard Buttons */
 .wizard-buttons {
     display: flex;
     gap: 15px;
     margin-top: 30px;
 }

 .btn-wizard {
     flex: 1;
     border-radius: 10px;
     background-color: var(--color-primario);
     color: var(--blanco-color);
     border: none;
     padding: 15px;
     font-size: var(--parrafos);
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn-wizard:hover {
     background-color: var(--tercer-azul);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
 }

 .btn-wizard.btn-secondary {
     background-color: var(--gris-proyecto);
 }

 .btn-wizard.btn-secondary:hover {
     background-color: #7a7a7a;
 }

 .btn-wizard:disabled {
     background-color: #e9ecef;
     color: var(--gris-proyecto);
     cursor: not-allowed;
     transform: none;
 }

 .login-link-container {
     margin-top: 20px;
     text-align: center;
 }

 .btn-login-link {
     color: #0d6efd;
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .btn-login-link:hover {
     color: #084298;
     text-decoration: underline;
 }

 @media (max-width: 992px) {
     .registro-row {
         grid-template-columns: 1fr;
     }

     .image-section {
         display: none;
     }

     .form-section {
         padding: 40px 25px;
     }

     .wizard-progress {
         flex-wrap: wrap;
     }

     .step-label {
         font-size: 10px;
     }
 }

 @media (max-width: 576px) {
     .form-row-custom {
         grid-template-columns: 1fr;
     }

     .wizard-buttons {
         flex-direction: column;
     }
 }