@charset 'utf-8';

body {
  align-items: center;
  background-color: #0068b7;
  display: flex;
  height: 100vh;
  justify-content: center;
  position: relative;
  width: 100%;
}

form {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  width: calc(100% - 60px);
}

.wrap {
  width: 360px;
}

h1 {
  text-align: center;
}

div {
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  border-radius: 10px;
  border: 1px solid #aaa;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 0.5em 0.5em;
  width: calc(100% - 1em);
}

#submit_button {
  background-color: #4756ca;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  margin: 20px 0;
  padding: 1em;
  transition: 0.3s;
  width: 100%;
}

#submit_button:disabled {
  background-color: #aaa;
  color: #000;
  cursor: default;
}

/* input[type="submit"]:active:hover {
  background-color: #122ae3;
} */

#logo {
  margin-bottom: 20px;
  text-align: center;
  width: 360px;
}

#logo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  filter: brightness(0) invert(1);
}

.login-button {
  text-align: right;
}

select {
  border-radius: 10px;
  font-size: 20px;
  width: 100%;
  margin: 10px 0;
}

.explanation {
  color: #aaa;
}

.copyright {
  bottom: 0;
  color: #fff;
  left: 0;
  padding-bottom: 10px;
  position: fixed;
  text-align: center;
  user-select: none;
}
