.form-signin {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.form-signin form {
    margin: auto 5vw;
    max-width: 100%;
    padding: 2vw;
}
.form-signin form img {
    width: 33%;
    height: auto;
}

.form-signin form .form-floating {
    width: 80%;
    margin: auto;
}

/* CODIGO GENERADO *NO TOCAR* */
.login__Button {
    align-items: center;
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    fill: #000;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    letter-spacing: -.8px;
    line-height: 24px;
    min-width: 140px;
    outline: 0;
    padding: 0 17px;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 80%;
    border-radius: .25rem;
  }

  .login__Button:focus {
    color: #171e29;
  }

  .login__Button:hover {
    border-color: #e72166;
    color: #e72166;
    fill: #e72166;
  }

  .login__Button:active {
    border-color: #e72166;
    color: #e72166;
    fill: #e72166;
  }

  @media (min-width: 768px) {
    .login__Button {
      min-width: 170px;
    }
  }
/* FIN CODIGO GENERADO */

.banner-signin {
    width: 100%;
    height: 100vh;
    background-image: url(/system/public/resources/media/loginBackground.svg);
    background-position: center;
}

/* MEDIA MOBILE */
@media (max-width: 768px) {
    .form-signin {
        display: block;
        position: relative;
    }
    .form-signin form {
        position: absolute;
        inset: 0;
        width: 90%;
        max-width: 400px;
        height: fit-content;
        margin: auto;
        padding: 2rem 0;
        background-color: #fff;
        border-radius: 1rem;
        box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    }

}

/* Footer */
.text-muted, .form-signin .checkbox {
    --bs-text-opacity: 1;
    color: var(--footer-text-color) !important;
}

/* Google recaptcha */
.g-recaptcha{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
}

/*Clase para ocultar contenedores*/
.non-visible{
  display: none;
}