html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #0082c9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
}

#body-login {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#header {
  margin-top: 80px;
  margin-bottom: 24px;
}

.logo {
  width: 120px;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='12' fill='white'/%3E%3Ccircle cx='14' cy='32' r='6' fill='white'/%3E%3Ccircle cx='50' cy='32' r='6' fill='white'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

#content {
  background: white;
  padding: 32px 28px;
  border-radius: 3px;
  width: 320px;
  box-shadow: 0 1px 10px rgba(0,0,0,.15);
}

.login-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.login-form p { margin: 0; }

.login-form input {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  outline: none;
}

.grouptop input { border-radius: 3px 3px 0 0; }
.groupbottom input { border-radius: 0 0 3px 3px; border-top: none; }

.login {
  margin-top: 18px;
  width: 100%;
  padding: 10px;
  background: #0082c9;
  color: white;
  border: none;
  font-size: 14px;
  border-radius: 3px;
  opacity: .6;
  cursor: not-allowed;
}
