html {
  height: 100%;
}
.login_page {
  height: 100%;
}
.login_page #primary {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.login_page #login_box {
  background: #212427;
  padding: 3em;
  box-shadow: 33px 33px 66px #1c1f23, -33px -33px 66px #252a2e;
  border-radius: 4em;
  border: 2px solid #2e2e2e;
}
.login_page .logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
.login_page .logo span {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  padding: 0;
  height: 80px;
  width: 80px;
  border: 5px solid #fff;
  border-radius: 12em;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
nav .primary .logo span:hover {
  background-color: #1d2125;
  color: #d4d4d4;
  transition: 0.2s;
  border-color: #d4d4d4;
}
#login_box .inputWrap {
  position: relative;
  margin-bottom: 1em;
}
.login_page input {
  padding: 12px 16px;
  box-sizing: border-box;
  outline: none;
  text-transform: initial;
  border-radius: 4em;
  border: 2px solid #2e2e2e !important;
  color: #d6d6d6 !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 16px;
  background: #2b2f33 !important;
  max-width: 230px;
  width: 100%;
}
.login_page input:focus {
  background: #2d343a;
}
.login_page input.hoverfield:focus,
.login_page input.hoverfield:hover {
  background-color: #35393d !important;
  border: 2px solid #46464659 !important;
  box-shadow: none !important;
}
.login_page button {
  width: 100%;
  border: 0;
  outline: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s all;
}
.login_page .button_field {
  margin-top: 2em;
}
.btn-grad {
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  display: block;
  background: #2d343d !important;
}
.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  transition: 0.2s all;
}
.login_page .button_field {
  margin-top: 2em;
  flex-direction: column;
  display: flex;
  gap: 1em;
}
.login_page button[type="reset"] {
  border: 2px solid #611b1b !important;
}
.login_page a {
  text-decoration: none;
  float: right;
}
