html, body {
  width: 100%;
  height: 100%;
}

[id=mainContainer] {
  width: auto;
}

[id=main] {
  position: relative;
  width: 380px;
  height: auto;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.input {
  width: 210px;
  vertical-align: middle;
}

.form-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
.form-items .logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background-color: #2649AB;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px 4px 0px 0px;
  margin-bottom: 20px;
}
.form-items .logo img {
  max-height: 50px;
  margin-right: 10px;
}

.form-item:first-child {
  margin-top: 16px;
}
.form-item {
  padding-top: 20px;
  width: 100%;
  text-align: left;
  display: inline-block;
}
.form-item .itemLabel {
  display: inline-block;
  width: 95px;
  text-align: right;
  margin-right: 5px;
  vertical-align: middle;
}

#buttonBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 40px 50px;
}