/* login.css */
body.login-wrapper {
    margin: 0;
    padding: 0;
  }
  
  .login-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
  }
  
  /* PANEL IZQUIERDO */
  .login-info {
    flex: 1;
    position: relative;
    background-color: #f6849f; /* tu rosa */
    padding: 4rem;
    box-sizing: border-box;
  
    /* fondo: logo izquierdo asomando en esquina superior derecha */
    background-image: url('/images/Mariela_marca-06.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 300px auto;
  }
  
  
  .login-info .info-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .login-info p {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* PANEL DERECHO */
  .login-form {
    flex: 1;
    position: relative;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
  
    /* fondo: logo derecho asomando en esquina inferior izquierda */
    background-image: url('/images/Mariela_marca-05.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 300px auto;
  }
  
  .login-form .form-title {
    color: #f6849f;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .login-form form {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
  }
  
  .login-form label {
    margin-top: 1rem;
    font-weight: 500;
  }
  
  .login-form input[type="text"],
  .login-form input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 1rem;
  }
  
  .btn-login {
    margin-top: 2rem;
    width: 100%;
    padding: 0.75rem;
    background-color: #f6849f;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 4px 4px var(--color-shadow);
  }

  .btn-login:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
 }

  .btn-restablecer {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background-color: #f6849f;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 4px 4px var(--color-shadow);
  }
  
  .btn-restablecer:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
  }

  .error-reset {
    margin-top: 9px;
    position: absolute;
  }
  
  .btn-login:hover {
    background-color: #f6849f; /* opcional: un hover suave */
  }
  
  .forgot-password {
    margin-top: 1rem;
    color: #f6849f;
    text-decoration: none;
    font-size: 0.9rem;
  }  