.login-box {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-top: 60px;
  align-items: center;
  padding: 10px;
}

.login-box p {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.login-box p label {
  display: flex;
  flex-grow: 1;
  font-weight: bold;
}

.login-box .form-group {
  width: 100%;
  height: 40px;
  margin-top: 16px;
  border-radius: 3px;
}

.login-box .form-group input {
  width: 100%;
}

.login-box .form-group input[type=submit] {
  color: white;
  background-color: black;
  border-radius: 4px;
}

.login-box .form-group input[type=submit]:hover {
  font-weight: bold;
}