* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
      font-family: 'Montserrat', sans-serif;
    }

    /* Línea decorativa */
    hr {
      border: none;
      height: 1px;
      background: #BE9961;
      margin: 1.5rem 0;
      opacity: 0.6;
    }

    .container {
      display: flex;
      height: 100vh;
      flex-direction: row;
    }

    .left {
      background-color: #691b32;
      color: white;
      flex: 1;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      border-radius: 0 1.5rem 1.5rem 0;
    }

    .logo-top img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .left .logo img {
      max-width: 80%;
      height: auto;
      margin-bottom: 1rem;
    }

    .logo-foot img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .texto2 p {
      margin-top: 1rem;
    }

    .right {
      background-image: url('fondo1.png');
      background-size: cover;
      background-position: center;
      flex: 1;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 0;
    }

    form {
      width: 100%;
      max-width: 480px;
      background-color: rgba(255, 255, 255, 0.9);
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .form-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .form-header h2 {
      color: #BE9961;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .form-header h3 {
      font-size: 1.2rem;
      margin: 0;
    }

    label {
      display: block;
      margin-top: 1rem;
      font-weight: bold;
    }

    input {
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.3rem;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    button {
      width: 100%;
      padding: 0.6rem;
      background-color: #BD344F;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 1rem;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #501425;
    }

    .form-footer {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.85rem;
      color: #333;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .left, .right {
        width: 100%;
        height: auto; /* altura flexible para móvil */
        border-radius: 0;
      }

      .left {
        border-radius: 0 0 1.5rem 1.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
      }

      /* Reducir espacio entre imágenes */
      .logo-top img,
      .left .logo img {
        margin-bottom: 0.5rem;
      }

      .texto2 p {
        margin-top: 0.5rem;
      }
    }
    
    .input-container {
      position: relative;
      width: 100%;
      margin: 0px;
    }

    .input-container img {
      position: absolute;
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      pointer-events: none;
    }

    .input-container input {
      width: 100%;
      padding: 10px 10px 10px 40px; /* espacio para el ícono */
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;


    }

    .input-container input:focus {
      border-color: #007BFF;
      outline: none;
    }