/* //////////////// estilos de registro /////////////////////// */
    .bodyRegistro {
      font-family: 'Roboto', sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
      background-image: url(img/hero1.jpg);
      background-size: cover;
    }

    .capa-superior {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 70, 150, 0.4); /* azul semitransparente */
  z-index: 0; /* asegurate que esté arriba de todo */
  pointer-events: none; /* para que no bloquee clics */
}


    .registro-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 14px 40px;
    background-color: #fff9;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    position: relative;
    
}

    .registro-container h2 {
      text-align: center;
      color: #333;
      margin-bottom: 30px;
    }

    .form-group {
      margin-bottom: 0;
    }

    .form-group label {
      font-weight: bold;
      display: block;
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #bbb;
      font-size: 14px;
    }

    .form-group input:focus {
      outline: none;
      border-color: #30903a;
      box-shadow: 0 0 5px rgba(48, 144, 58, 0.3);
    }

    .phone-group {
      display: flex;
      gap: 10px;
    }

    .phone-group select {
    width: 30%;
    margin-bottom: 15px;
}

    .phone-group input {
      width: 70%;
    }

    .Regsiter-Button {
      background-color: #30903a;
      color: white;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .Regsiter-Button:hover {
      background-color: #256a2c;
    }

    .form-link {
      text-align: center;
      margin-top: 15px;
      font-size: 14px;
    }

    .form-link a {
      color: #30903a;
      text-decoration: none;
    }

    .form-link a:hover {
      text-decoration: underline;
    }

    .mensaje {
      text-align: center;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .mensaje.error {
      color: red;
    }

    .mensaje.success {
      color: green;
    }
   /* fin de registro */

   /* ////////////// estilo login ////////////////////// */

        .login-container {
            max-width: 400px;
            margin: 80px auto;
            padding: 40px;
            background-color: #fff9;
            border-radius: 15px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            z-index: 100;
    position: relative;
        }

        .login-container h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }

        .form-group {
            margin-bottom: 0;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .form-group input {
    width: 95%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 14px;
}

        .form-group input:focus {
            outline: none;
            border-color: #30903a;
            box-shadow: 0 0 5px rgba(48, 144, 58, 0.3);
        }

        .login-btn {
            width: 100%;
            background-color: #30903a;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .login-btn:hover {
            background-color: #256a2c;
        }

        .login-links {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
        }

        .login-links a {
            color: #30903a;
            text-decoration: none;
        }

        .login-links a:hover {
            text-decoration: underline;
        }



        
        /* fin de login */