@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap");

:root {
  --vl-font-1: "Rubik", sans-serif;
}

.reset {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.reset * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--vl-font-1);
}

.reset,
.reset body {
  min-height: 100%;
}

.reset body {
  padding: 10px;
}

.form-login {
  margin: 0 auto;
  border-radius: 12px;
  max-width: 350px;
  margin-top: 50px;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 6px;
}

.form-login__title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 400;
}
.form-login__formGroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  position: relative;
}

.form-login__formGroup__label {
  font-weight: 500;
  font-size: 14px;
}
.form-login__formGroup__input {
  width: 100%;
  padding: 6px 18px;
  border: none;
  outline: none;
  min-height: 33px;
  border-radius: 33px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 6px;
  background: #f6f6fc;
}
.form-login__formGroup__select {
  width: 100%;
  padding: 6px 18px;
  border: none;
  outline: none;
  min-height: 33px;
  appearance: none;
  border-radius: 33px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 6px;

  background: #f6f6fc;
  text-align: center;
}

.form-login__button {
  margin-top: 24px;
  width: 100%;
  padding: 7px 14px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  border: 1px solid #ea345f;
  background-color: #ea345f;
  color: #ffffff;
  font-family: var(--font-1);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: capitalize;
}
.form-login__button:not(:disabled) {
  cursor: pointer;
}
.form-login__button:disabled {
  border: 1px solid #d6d8e8;
  background-color: #d6d8e8;
  color: #ffffff;
}

.form-login__logo {
  display: block;
  margin: 0 auto;
  margin-bottom: 12px;
  object-fit: cover;
  max-width: 80px;
  max-height: 80px;
}

.form-login__formGroup__eye {
  position: absolute;
  right: 10px;
  top: 50%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  object-fit: cover;
  border: none;
  background: transparent;
  color: #52596b;
}

.form-login__formGroup__select--arrow {
  position: absolute;
  right: 10px;
  top: 52%;
  cursor: pointer;
  width: 20px;
  height: 20px;
  object-fit: cover;
  border: none;
  background: transparent;
  color: #52596b;
  cursor: default;
  pointer-events: none;
}

.form-login__formGroup__error {
  font-size: 10px;
  color: #ff0000;
}

/*  notificacion */
.vl-notification-wrapper {
  pointer-events: none;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 113001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  padding: 12px;
}
.vl-notification-wrapper * {
  pointer-events: initial;
}

.vl-toast {
  --bg: transparent;
  --colorIcon: transparent;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 14px 10px;
  width: 290px;
  min-height: 66px;
  border-radius: 5px;
  text-align: left;
  filter: drop-shadow(0 0 4px #00000033) brightness(0.95);
  cursor: default;
  animation: goNotification 250ms ease-in-out forwards;
}
.vl-toast:hover {
  filter: drop-shadow(0 0 4px #00000033) brightness(1);
}

.vl-toast.success {
  --bg: #e9eaff;
  --colorIcon: #4b27ef;
}
.vl-toast.error {
  --bg: #ffe7e7;
  --colorIcon: #d43224;
}
.vl-toast.warning {
  --bg: #fbffcd;
  --colorIcon: #ebe14b;
}

.vl-toast__icon {
  position: absolute;
  left: -25px;
  width: 50px;
  height: 50px;
  padding: 8px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--colorIcon);
  text-align: center;
  font-size: 30px;
}
.vl-toast__info {
  padding-left: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
}
.vl-toast__info__title {
  font-size: 17px;
  font-weight: 500;
}
.vl-toast__info__msg {
  font-size: 17px;
  font-weight: 400;
}
.vl-toast__close {
  top: 8px;
  right: 8px;
  position: absolute;
  display: grid;
  place-items: center;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  background: transparent;
}

@keyframes goNotification {
  0% {
    position: "relative";
    bottom: "30px";
    opacity: 0;
  }
  100% {
    bottom: "0px";
    opacity: 1;
  }
}
