.container {
  width: 50vh;
  height: 70vh;
  margin: 4vh auto;
  border: 1px solid #aaa;
}

.login-form {
    height: 90%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body {
    font-family: "IBM Plex Sans", Arial, sans-serif;
}

h1 {
    font-size: 1em;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: "IBM Plex Sans", Arial, sans-serif;
}

.form {
  font: inherit;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  display: block;
}


.user-id-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

#login-btn {
    background-color: #ccc;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;       /* ensures pointer shows */
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
}

.bottom-section > button {
    background-color: #fff;
    color: #111;
    border: none;
    cursor: pointer;       /* ensures pointer shows */
}

input.form {
  font: inherit;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  display: block;
}

