* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #666666;
}
body > div {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.3);
}
#title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5em 1.5em;
  font-size: 24px;
  color: #666666;
  border-radius: 8px 8px 0 0;
  background: rgba(241, 241, 241, 0.8);
}
#title img {
  width: 80px;
  margin-bottom: 10px;
}
form {
  display: flex;
  flex-direction: column;
}
form > div:first-child{
  padding: 1.5em 1.5em 1em 1.5em;
}
form > div input {
  border: 0;
  padding: 0 14px;
  right: 0;
  height: 40px;
  font-size: 13px;
  width: 100%;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  position: relative;
  color: rgba(0, 0, 0, 0.87);
}
.input-wrap {
  display: flex;
  border-radius: 3px;
  border: 1px solid #cccccc;
  position: relative;
  background: #f1f1f1;
  -webkit-transition: border-color 0.8s;
  transition: border-color 0.8s;
}
.input-wrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
}
.input-wrap:first-child {
  margin-bottom: 1em;
}
form input[type="submit"],
form button {
  background-color: rgb(0, 102, 102);
  color: #ffffff;
  padding: 1.7em;
  border: none;
  border-radius: 0 0 8px 8px;
  cursor: pointer;
  transition: 0.2s ease;
}
form input[type="submit"]:hover,
form button:hover {
  background-color: rgb(0, 114, 114);
}
#error-message {
  padding: 0.5em 1.5em;
  text-align: center;
  background: #ff3e00;
  color: #ffffff;
  font-size: 14px;
}
#request-access {
  font-size: 12px;
  padding: 0 1.5em 1.3em 2.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#reset-password,
#request-access a {
  padding: 0.4em;
  text-decoration: none;
  color: #666666;
}

#reset-password:hover,
#request-access a:hover {
  color: blue;
}

#reset-password {
  cursor: pointer;
}

#popup {
  display: none;
  position: absolute;
  padding: 1em;
  border-radius: 0;
  width: 95%;
  max-width: 700px;
}

#popup * {
  pointer-events: none;
}

#popup h3 {
  padding-bottom: 15px;
  color: #333333;
}

#popup a {
  pointer-events: all;
}

#popup p:last-child {
  padding-top: 10px;
}