@charset 'utf-8';

body {
  align-items: center;
  background-image: linear-gradient(135deg, #0fc9e7 0%, #3186b2 80%);
  display: flex;
  height: 100vh;
  justify-content: center;
  position: relative;
  width: 100%;
}

form {
  color: #fff;
  width: 300px;
}

h1 {
  text-align: center;
}

div {
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  border-radius: 10px;
  border: none;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 0.2em 0.5em;
  width: calc(100% - 1em);
}

input[type="submit"] {
  background-color: #4756ca;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  padding: 1em;
  transition: 0.3s;
}

input[type="submit"]:disabled {
  background-color: #aaa;
  color: #000;
}

#logo {
  margin-bottom: 20px;
}

#logo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.login-button {
  text-align: right;
}

select {
  border-radius: 10px;
  font-size: 20px;
  width: 100%;
  margin: 10px 0;
}

.copyright {
  bottom: 0;
  color: #fff;
  left: 0;
  padding-bottom: 10px;
  position: fixed;
  text-align: center;
  user-select: none;
}
