
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Page CSS */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
body {
  background: #282a42;
  display: flex;
  align-items: center;
  justify-content: center;
}
* {
  font-family: 'Inter', sans-serif;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
button {
  cursor: pointer;
}
.a-left {
  align-items: flex-start;
  text-align: left;
}
.a-center {
  align-items: center;
  text-align: center;
}
.a-right {
  align-items: flex-end;
  text-align: right;
}
.weight-900 {
  font-weight: 900;
}
.weight-800 {
  font-weight: 800;
}
.weight-700 {
  font-weight: 700;
}
.weight-600 {
  font-weight: 600;
}
.weight-500 {
  font-weight: 500;
}
.weight-400 {
  font-weight: 400;
}
.weight-300 {
  font-weight: 300;
}
.size-42 {
  font-size: 42px;
}
.size-38 {
  font-size: 38px;
}
.size-32 {
  font-size: 32px;
}
.size-24 {
  font-size: 24px;
}
.size-18 {
  font-size: 18px;
}
.size-16 {
  font-size: 16px;
}
.size-12 {
  font-size: 12px;
}
::placeholder {
  color: #A0A1B8;
  opacity: 1; 
  font-size: 16px;
}
::-ms-input-placeholder { 
  color: #A0A1B8;
  font-size: 16px;
}

/* Begin login CSS */
.login {
  background: #31334E;
  border-radius: 10px;
  display: flex!important;
  flex-direction: column;
  grid-row-gap: 20px;
  overflow: auto;
  width: 400px;
  text-align: center;
  padding: 65px 35px;
  border: 1px solid #4F5269;
  color: #D2D2E8;
}
.login-description {
  color: #A0A1B8!important;
}
.login div {
  display: flex;
  grid-row-gap: 10px;
  flex-direction: column;
}
.form {
  display: flex;
  grid-row-gap: 15px;
  text-align: center;
  width: 100%;
  flex-direction: column;
}
.form input {
  background-color: #31334E;
  border: 1px solid #4F5269;
  border-radius: 5px;
  padding: 15px 20px;
  width: 90%;
  color: #A0A1B8;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form input:hover {
  border-color: #787a8d;
}
.form input:focus {
  border-color: #666DFE;
  outline: none;
}
.form-footer {
  flex-direction: row!important;
  justify-content: space-between;
  width: 100%;
}
.checkbox {
  display: flex;
  flex-direction: row!important;
  grid-column-gap: 5px;
}
.checkbox input {
  background-color: #31334E;
  border-radius: 0px!important;
  padding: 0px 0px!important;
  width: auto!important;
}
a {
  text-decoration: none;
  color: #666DFE;
}
.login button {
  background: #666DFE;
  border-radius: 5px;
  color: white;
  border: none;
  min-height: 38px;
  width: 100%;
}
.button {
  background: #666DFE;
  border-radius: 5px;
  color: white;
  border: none;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-footer-notice {
  flex-direction: row!important;
  width: 100%;
  text-align: center;
  justify-content: center;
  grid-column-gap: 3px;
}
.text-danger {
  color: red;
  font-weight: 300;
}