body {
  margin: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

#login_view {
  background-color: #435165;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10vh;
}

#login_wrap {
  width: 400px;
  background-color: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#login_wrap h1 {
  text-align: center;
  color: #5b6574;
  padding: 20px 0 30px 0;
  border-bottom: 1px solid #dee0e4;
}

#login_wrap form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin: auto;
  padding: 20px 0 30px 0;
}
#login_wrap form fieldset {
  border: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
#login_wrap form fieldset label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #3274d6;
  color: white;
}
#login_wrap form fieldset input[type=password],
#login_wrap form fieldset input[type=text] {
  width: 300px;
  height: 46px;
  border: 1px solid #dee0e4;
  text-indent: 10px;
}

input[type=submit] {
  width: 100%;
  padding: 15px;
  background-color: #3274d6;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  transition: background-color 0.3s;
}

input[type=submit]:hover {
  background-color: #2868c7;
  transition: background-color 0.3s;
}/*# sourceMappingURL=style.css.map */