body {
  font-family: Urbanist, sans-serif;
  background-color: #18193a;
}

.login-box {
  width: 400px;
  margin: 5% auto;
  padding: 20px;
  border: 1px;
  background-color: #ffffff;
  border-radius: 5px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.button {
  background-color: #0059d6; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  min-width: 80%;
  max-width: 350px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  margin-top: 20px;
}

.error {
  color: red;
}

.title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
  margin-top: 20px;
}

.input-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.input {
  height: 48px;
  width: 280px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 16px;
  min-width: 80%;
  max-width: 350px;
}

.label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  display: flex;
  align-items: center;
  pointer-events: none;
  margin-left: 40px;
}

.input,
.label .text {
  font-size: 16px;
}

.label .text {
  transition: all 0.15s ease-out;
  color: grey;
}

.input:focus {
  outline: none;
  border: 2px solid #a8ccee;
}

.input:focus + .label .text,
:not(input[value='']) + .label .text {
  font-size: 12px;
  transform: translate(0, -150%);
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
}

.input:focus + .label .text {
  color: #18193a;
}

.request-access {
  font-weight: 100;
}

.login-box-logo {
  margin-top: 20px;
}
