
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9fc;
  color: #0f0f3a;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

header img {
  height: 150px;
  margin-left: -50px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #3f2294;
  font-weight: 500;
  font-size: 15px;
}

.btn-ingresar {
  background-color: #b0ff1b;
  padding: 8px 20px;
  border-radius: 6px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  margin-left: 25px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.3;
  color: #0f0f3a;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 15px;
  color: #6f6f8c;
  margin-bottom: 30px;
}

.hero-text .btn {
  background-color: #3f2294;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.hero-img img {
  max-width: 500px;
  width: 100%;
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  header {
    flex-direction: column;
  }

  nav {
    margin-top: 15px;
  }

  .hero-img {
    margin-top: 40px;
  }
}


form {
    width: 100%;
    max-width: 500px;
    margin-top: -48px;
  }

  form select {
    margin-top: 6px;
    padding: 12px 16px;
    font-size: 14px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: #0f0f3a;
  }
  
  form select:focus {
    border-color: #3f2294;
  }
  
  
  form label {
    font-size: 12px;
    color: #0f0f3a;
    display: flex;
    flex-direction: column;
    font-weight: 500;
  }
  
  form input[type="text"],
  form input[type="number"],
  form input[type="email"],
  form input[type="password"] {
    margin-top: 6px;
    padding: 12px 16px;
    font-size: 12px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }
  
  form input:focus {
    border-color: #3f2294;
  }
  
  form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #3f2294;
    cursor: pointer;
  }
  
  form button[type="submit"] {
    background-color: #3f2294;
    color: white;
    padding: 12px;
    border: none;
    height: 50px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
  form button[type="submit"]:hover {
    background-color: #2c1875;
  }
  

  .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 10px;
  }
  
  .form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3f2294;
    cursor: pointer;
  }
  
  .form-check label {
    font-size: 14px;
    color: #0f0f3a;
    cursor: pointer;
    font-weight: 400;
  }
  




/* ALERTA DE REGISTRO GUARDADO CORRECTAMENTE */
#alerta-exito {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .alerta-contenido {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
    font-family: 'Poppins', sans-serif;
  }
  
  .alerta-contenido h2 {
    color: #3f2294;
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .alerta-contenido p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
  }
  
  .alerta-contenido button {
    background: #3f2294;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .alerta-oculta {
    display: none;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* SESION DE  CONSULTOR O EMPRESA*/









  