@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
      /*=================== ALL HEADER ===================*/

      @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      img {
        max-width: 100%;
      }
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.3rem 10%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 100;
      }
      .header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(40px);
        z-index: -1;
      }
      .header::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent
        );
        transition: 0.5s;
      }
      .header:hover::after {
        left: 100%;
      }

      .logo-img {
        height: 100px;
        width: 200px;
      }

      .navbar a {
        font-size: 1.15rem;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        margin-left: 2.5rem;
      }

      #check {
        display: none;
      }

      .icons {
        font-size: 2.8rem;
        right: 5%;
        color: #fff;
        cursor: pointer;
        display: none;
      }

      @media (max-width: 992px) {
        .header {
          padding: 1.3rem 5%;
        }
      }

      @media (max-width: 768px) {
        .icons {
          display: inline-flex;
        }

        #check:checked ~ .icons #menu-icon {
          display: none;
        }

        .icons #close-icon {
          display: none;
        }

        #check:checked ~ .icons #close-icon {
          display: block;
        }

        .navbar {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          height: 0;
          background: rgba(0, 0, 0, 0.1);
          backdrop-filter: blur(40px);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          transition: 0.3s ease;
          overflow: hidden;
        }

        #check:checked ~ .navbar {
          height: 17.7rem;
        }

        .navbar a {
          display: block;
          font-size: 1.1rem;
          margin: 1.5rem 0;
          text-align: center;
          transform: translateY(-50px);
          transition: 0.3s ease;
        }

        #check:checked ~ .navbar a {
          transform: translateY(0);
          opacity: 1;
          transition-delay: calc(0.15s * var(--i));
        }
      }

      * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: "Montserrat", sans-serif;
      }

      body {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        background-image: url(./IMAGENES/reservacion.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
      }

      .contenedor_formulario_registro {
        padding-top: 160px;
        padding-bottom: 10px;
        display: flex;
        flex-direction: row;
        border-radius: 20px;
        box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
        height: auto;
        max-width: 900px;
        margin: 10px;
      }

      .informacion {
        width: 40%;
        display: flex;
        align-items: center;
        text-align: center;
        background-color: #ff0054;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        height: auto;
      }

      .info-xd {
        width: 100%;
        padding: 0 30px;
      }

      .info-xd h2 {
        font-size: 2.5rem;
        color: #fff;
      }

      .info-xd label i {
        border-radius: 50%;
        padding: 15px;
        margin: 10px 0;
        border: solid thin #ffffff;
        color: #000000;
        background-color: #bde0fe;
      }

      .info-xd h3 {
        color: #d9ed92;
      }

      .info-xd p {
        color: #cce3de;
      }

      .formulario_informacion {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60%;
        text-align: center;
        background-color: white;
        height: 500px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
      }

      .formulario_informacion_cuenta {
        padding: 0 30px;
      }

      .formulario_informacion_cuenta h2 {
        color: #000000;
        margin-top: 25px;
        font-size: 2rem;
      }

      .formulario_informacion_cuenta p {
        color: #333;
      }

      .iconos {
        margin: 15px 0;
      }

      .form .iconos p {
        font-size: 12px;
      }

      .iconos i {
        border-radius: 50%;
        padding: 15px;
        cursor: pointer;
        margin: 0 10px;
        border: solid thin #919191;
        color: #919191;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .iconos i:hover {
        background-color: #c7c7f3;
        color: white;
      }

      .form {
        margin: 30px 0 0 0;
      }
 
      .form label {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        border-radius: 20px;
        padding: 0 10px;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .form label input {
        width: 100%;
        padding: 10px;
        background-color: #fff;
        border: none;
        outline: none;
        border-radius: 20px;
        color: #333;
      }

      .form label i {
        color: #a7a7a7;
      }

      .form button {
        padding-bottom: 100px;
        background-color: #ffae00;
        color: #080808;
        border-radius: 20px;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        margin-top: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .form button:hover {
        background-color: #8cff00;
        color: #080808;
      }

      /* Media Queries for responsive design */
      @media screen and (max-width: 750px) {
        html {
          font-size: 12px;
        }

        .contenedor_formulario_registro {
          flex-direction: column;
        }

        .informacion,
        .formulario_informacion {
          width: 100%;
          border-radius: 20px;
        }
      }

      @media screen and (max-width: 580px) {
        html {
          font-size: 10px;
        }

        .informacion {
          padding: 20px;
        }

        .formulario_informacion {
          padding: 20px;
        }

        .formulario_informacion_cuenta h2 {
          font-size: 1.5rem;
        }
      }
      /* Estilos CSS para el modal */
      .modal-container {
        display: none; /* Oculto por defecto */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
        justify-content: center;
        align-items: center;
      }

      .modal {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
      }

      button#close {
        margin-top: 10px;
        background-color: #8cff00;
        color: #564223;
        cursor: pointer;
        border-radius: 20px;
        border: 0;
        padding: 10px 15px;
        margin-top: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }