/* Reinicio básico */
* {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f0f0f0;
  }
  
  /* Contenedor principal con fondo degradado */
  .login-wrapper {
    width: 90%;
    max-width: 1000px;
    height: 550px;
    margin: 50px auto;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #8360c3 0%, #2ebf91 100%);
    overflow: hidden;
    position: relative;
  }
  
  /* Sección izquierda (degradado): Logo, bienvenida y botón "Inicio" */
  .left-content {
    width: 50%;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .logo-inside {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 20px;
  }
  .left-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .left-content p {
    font-size: 14px;
    max-width: 300px;
    margin-bottom: 20px;
  }
  .btn-home {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 25px;
    background: #fff;
    color: #2ebf91;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .btn-home img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
  
  /* Panel blanco (derecha) con bordes redondeados en el lado izquierdo */
  .white-panel {
    width: 50%;
    background: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
  }
  
  /* Formulario */
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Contenedores translúcidos para Email y Password */
  .field-container {
    background: linear-gradient(135deg, rgba(131,96,195,0.2), rgba(46,191,145,0.2));
    border-radius: 8px;
    padding: 10px 15px;
  }
  .field-container label {
    font-size: 14px;
    color: #333;
  }
  .field-container input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    padding: 5px;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
  }
  
  /* Campo Password con icono */
  .password-field {
    position: relative;
  }
  .password-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .toggle-password {
    width: 20px;
    cursor: pointer;
  }
  
  /* Opciones */
  .options-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
  }
  .options-row .forgot-link {
    text-decoration: none;
    color: #2ebf91;
  }
  
  /* Botones */
  .buttons-row {
    display: flex;
    gap: 8px;
  }
  .btn-login, .btn-signup {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .btn-login {
    background: #4C62F6;
    color: #fff;
  }
  .btn-login:hover {
    background: #3340b8;
  }
  .btn-signup {
    background: #fff;
    color: #4C62F6;
    border: 1px solid #4C62F6;
  }
  .btn-signup:hover {
    background: #4C62F6;
    color: #fff;
  }
  .btn-login img, .btn-signup img {
    width: 14px;
    margin-right: 5px;
  }
  
  /* Redes sociales */
  .social-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }
  .social-row img {
    width: 22px;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .login-wrapper {
      flex-direction: column;
      height: auto;
    }
    .left-content,
    .white-panel {
      width: 100%;
      border-radius: 0;
      padding: 30px;
    }
  }
  