@import url("app-22bc8c197097d4d1864fbddd8dbf90b6.css");

.logo {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.login-bg-image {
  background-image: url("../images/login-bg-a25f3e0a00fb87fecde616eba8f684d9.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  mix-blend-mode: multiply;
}

.login-bg-image-cover {
  background-color: rgba(30, 51, 96, 1);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -3;
}

.decoracion-left {
  background-image: url("../images/bg-side-image-6881bfd24c0d3607a12c19d8ee452e0d.png");
  position: absolute;
  top: calc(50% - 380pt / 2);
  left: 0;
  width: 140pt;
  height: 380pt;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: contain;
}

@media screen and (max-width: 1070px) {
  .decoracion-left {
    background-image: none;
  }
}

.login-wrapper {
  max-width: 500pt !important;
  margin-top: 40px;
  font-family: "Montserrat", sans-serif;

  .form-group {
    width: 300pt;
    margin: auto;
    padding: 0 0 10pt;

    &.btns {
      display: flex;
    }
  }

  .login-content {
    padding: 10pt;
    width: 100%;
  }

  label {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0.2rem;
    margin-left: 0.1em;

    &::after {
      background: transparent !important;
      content: "" !important;
      filter: none !important;
    }
  }

  button {
    margin: auto;
    background: rgb(255, 212, 10);
    border-radius: 12px;
    height: 48px;
    width: 275px;
    font-size: 16px;
    color: rgba(30, 51, 96, 1);
    border: none;
    box-shadow: none;
    font-weight: 600;

    &:hover {
      background: rgb(255, 212, 10) !important;
      color: rgba(30, 51, 96, 1) !important;
      outline: none;
      border: none;
      box-shadow: none;
    }
  }

  .form-widget {
    input {
      background-color: rgba(30, 51, 96, 1);
      border: none;
      border-radius: 14px;
      height: 35pt;
      box-shadow: none;
      color: white;
      font-size: 16px;
      width: 100%;

      &:focus {
        outline: none;
        border: none;
        box-shadow: none;
      }
    }
  }

  .form__remember-me {
    .form-check-label {
      font-size: 14px;
    }

    .form-check-input {
      background-color: rgba(30, 51, 96, 1);
      border: none;

      &:focus {
        border: none;
      }
    }
  }

  .olvide {
    text-align: center;
    text-decoration: underline;
    font-size: 14px;
    color: white;

    a {
      color: white;
    }
  }
}

.alert-error {
  border-radius: 0.375rem;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  width: 100%;
  min-height: 30pt;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  color: #842029;

  .icon {
    color: #842029;
  }

  .text {
    flex: 1;
    padding: 0 6pt;
    color: #842029;
    font-weight: 400;
  }

  .close {
    color: #842029;
    font-size: 20px;
    cursor: pointer;
  }

  // Warning style variant (yellow)
  &.alert-warning-style {
    background-color: #fff3cd;
    border-color: #ffecb5;
    color: #664d03;

    .icon, .text, .close {
      color: #664d03;
    }
  }

  // Info style variant (blue)
  &.alert-info-style {
    background-color: #cff4fc;
    border-color: #b6effb;
    color: #055160;

    .icon, .text, .close {
      color: #055160;
    }
  }

  // Success style variant (green)
  &.alert-success-style {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;

    .icon, .text, .close {
      color: #0f5132;
    }
  }
}

.form-group {
  h3 {
    color: white;
    font-size: 14pt;
  }
}


@media (max-width:576px) {
  .login-wrapper {
    .form-group {
      width: 100%;
    }
  }
}

// Estilos consistentes para todas las alertas con fondo de color
.alert {
  border: 1px solid;
  border-radius: 0.375rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 14px;

  &.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;

    i {
      color: #842029;
    }
  }

  &.alert-info {
    background-color: #cff4fc;
    border-color: #b6effb;
    color: #055160;

    i {
      color: #055160;
    }
  }

  &.alert-warning {
    background-color: #fff3cd;
    border-color: #ffecb5;
    color: #664d03;

    i {
      color: #664d03;
    }
  }

  &.alert-success {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;

    i {
      color: #0f5132;
    }
  }
}