.uk-container {
  padding-left: 20px;
  padding-right: 20px;
}

html {
  height: 100%;
}

.auth-body {
  color: #576985;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  overflow: auto !important;
}

.auth-header {
  border-bottom: 2px solid #FAFAFA;
  background: white;
  box-sizing: border-box;
}

.auth-header__grid,
.auth-footer__grid {
  height: 90px;
}

.auth-header__logo {
  width: 210px;
}

.auth-footer {
  border-top: 2px solid #FAFAFA;
  background: white;
  box-sizing: border-box;
  width: 100%;
}

.auth-content {
  height: calc(100% - 184px);
  min-height: 460px;
}

.auth-content__inner {
  max-width: 450px;
  width: 100%;
}

.uk-button {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  border-radius: 5px;
  padding: 15px 30px;
  line-height: 1;
  transition: color 0.3s, background-color 0.3s;
  border: none;
  font-weight: 500;
}
.uk-button:hover {
  border: none;
}

.uk-button-default {
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: var(--1st-color);
}
.uk-button-default:hover, .uk-button-default:active, .uk-button-default:focus {
  color: #FFFFFF;
  background-color: var(--2nd-color);
}

h1 {
  color: #051124;
  font-family: "Poppins", Sans-serif;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.1em;
}

h2 {
  color: #051124;
  font-family: "Poppins", Sans-serif;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.1em;
}
h2 i {
  font-size: 2em;
}

.uk-input {
  background-color: #ffffff;
  border-color: #E0E1F3;
  color: #172B4D;
  border-radius: 3px;
  line-height: 1.4;
  font-size: 15px;
  min-height: 40px;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  padding: 0.7em;
  display: block;
  transition: none;
}
.uk-input:focus {
  border: 2px solid var(--1st-color);
}

a:not(.uk-button) {
  color: #576985;
  transition: 0.4s;
}
a:not(.uk-button):hover {
  text-decoration: none;
  color: var(--1st-color);
}

.auth__under-link {
  text-decoration: underline;
  font-weight: 400;
}
.auth__under-link:hover {
  text-decoration: underline;
}

.auth-footer__grid-links-col {
  max-width: 900px;
}

.auth-password-input {
  position: relative;
}
.auth-password-input .auth-password-input__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 40px;
  background-image: url("/images/auth/eye-slash-regular.svg?v=4");
  background-size: 24px auto;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 1;
}

.auth-password-input--active .auth-password-input__icon {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 40px;
  background-image: url("/images/auth/eye-regular.svg?v=4");
}

.auth-password-input__input {
  position: relative;
  padding-right: 40px;
}

.auto-success-icon {
  width: 165px;
}

.uk-notification-message.uk-notification-message-primary {
  background: #2367fb;
  color: white;
  border-radius: 5px;
}
.uk-notification-message.uk-notification-message-primary svg {
  color: white;
}

@media (max-width: 959px) {
  .auth-footer__grid {
    height: 50px;
  }

  .auth-content {
    height: calc(100% - 144px);
  }
}
@media (max-width: 639px) {
  .auth__create-btn {
    padding-left: 0;
    padding-right: 0;
    width: 175px;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.5em;
  }

  .auto-success-icon {
    width: 135px;
  }
}
@media (max-width: 380px) {
  .auth__create-btn {
    letter-spacing: normal;
    width: 130px;
    font-size: 12px;
  }
}
