body {
  font-family: "Inter" !important;
}

.login {
  padding-top: 2.5rem !important;
}

.register {
  padding-top: 4rem !important;
}

/* .eye-slash {
  cursor: pointer;
} */

/*------ Settings ------*/

.input-container .eye {
  position: absolute;
  animation: keyframes-fill 0.5s;
}

.input-container .eye-slash {
  position: absolute;
  animation: keyframes-fill 0.5s;
  display: none;
}

.input-containers .eye {
  position: absolute;
  animation: keyframes-fill 0.5s;
}

.input-containers .eye-slash {
  position: absolute;
  animation: keyframes-fill 0.5s;
  display: none;
}

/* ------ On check event ------ */
.input-container .eye {
  display: none;
}

.input-container .eye-slash {
  display: block;
}
.input-containers .eye {
  display: none;
}

.input-containers .eye-slash {
  display: block;
}

/* ------ Animation ------ */
@keyframes keyframes-fill {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }
}

.shadows {
  box-shadow: 6px 1px 15px -3px rgba(0, 0, 0, 0.1),
    -11px 12px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.form {
  background-color: #fff;
  display: block;
  margin-top: 1rem;
  padding: 1rem;
  max-width: 350px;
  border-radius: 0.5rem;
  /* box-shadow: 6px 1px 15px -3px rgba(0, 0, 0, 0.1),
    -11px 12px 6px -2px rgba(0, 0, 0, 0.05); */
}

.form-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  text-align: center;
  color: #000;
  padding: 20px 0;
}
.input-containers {
  position: relative;
}

.input-containers span {
  display: grid;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  place-content: center;
  align-items: center;
}

.submit {
  display: block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: #4f46e5;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  width: 100%;
  max-width: min-content;
  border-radius: 0.5rem;
  text-transform: uppercase;
  outline: none;
  border: 1px solid #e5e7eb;
  margin: 8px 0;
}

.signup-link {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
}

.signup-link a {
  text-decoration: underline;
}

/* Error Style */

.error {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #fce8db;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.error__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.error__icon path {
  fill: #ef665b;
}

.error__title {
  font-weight: 500;
  font-size: 14px;
  color: #71192f;
}

.error__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.error__close path {
  fill: #71192f;
}

.success {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  background: #edfbd8;
  border-radius: 8px;
  border: 1px solid #84d65a;
  box-shadow: 0px 0px 5px -3px #111;
}

.success__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.success__icon path {
  fill: #84d65a;
}

.success__title {
  font-weight: 500;
  font-size: 14px;
  color: #2b641e;
}

.success__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.success__close path {
  fill: #2b641e;
}

#statusErrorsModal{
  padding-top: 9.5rem !important;
}