  /* Reseteo de márgenes */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Estilos del body */
    body {
      font-family: Arial, sans-serif;
      background-color: #ffffff;
      color: #333;
    }

    /* Contenedor principal */
    header {
      background-color: #31afb5;
      color: white;
      text-align: center;
      padding: 40px;
    }

    header h1 {
      font-size: 3em;
    }

    header p {
      font-size: 1.2em;
      margin-top: 10px;
    }

    /* Estilo de la sección de presentación */
    .intro {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
      padding: 20px;
    }

    .intro img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .intro-text {
      flex: 1;
      padding: 20px;
    }

    .intro-text h2 {
      font-size: 2em;
      color: #31afb5;
    }

    .intro-text p {
      font-size: 1.1em;
      margin: 20px 0;
    }

    /* Estilos para el formulario */
    .cta {
      background-color: #eea412;
      color: white;
      padding: 40px;
      text-align: center;
    }

    .cta h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .cta form {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    .cta input[type="text"],
    .cta input[type="email"] {
      padding: 10px;
      font-size: 1em;
      border: 2px solid #ccc;
      border-radius: 5px;
      width: 200px;
    }

    .cta button {
      padding: 10px 20px;
      background-color: #31afb5;
      border: none;
      color: white;
      font-size: 1em;
      border-radius: 5px;
      cursor: pointer;
    }

    .cta button:hover {
      background-color: #269b9a;
    }

    /* Estilos responsivos */
    @media (max-width: 768px) {
      .intro {
        flex-direction: column;
        text-align: center;
      }

      .intro img {
        max-width: 80%;
        margin-bottom: 20px;
      }

      .cta form {
        flex-direction: column;
      }

      .cta input[type="text"],
      .cta input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
      }
    }
    
    
    
    
    /* Estilos personalizados */
    .login-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 45vh;
      background-color: #f2ffff;
    }

    .login-form {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
    }

    .login-form h2 {
      color: #31afb5;
      text-align: center;
      margin-bottom: 30px;
    }

    .btn-primary {
      background-color: #eea412;
      border-color: #eea412;
    }

    .btn-primary:hover {
      background-color: #d88f0a;
      border-color: #d88f0a;
    }

    .form-label {
      color: #31afb5;
    }

    .form-control {
      border-color: #31afb5;
    }

    .form-control:focus {
      border-color: #eea412;
      box-shadow: 0 0 5px rgba(238, 164, 18, 0.8);
    }