body {
  font-size: 1.2rem;
  font-family: sans-serif;
}

.row {
  display: flex;
  flex-direction: row;
  width: 500px;
  padding: 15px 5px;
  position: relative;
}

label {
  flex: 1;
}

input {
  flex: 3;
  border-radius: 4px;
  line-height: 1.4rem;
}

input[type="submit"] {
  width: 200px;
  height: 50px;
  font-size: 1.6rem;
}

input[type="radio"] {
  text-align: left;
}

.second-column {
  flex: 3;
}

span.error {
  position: absolute;
  left: 100%;
  width: 100%;
}

.logout {
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
}

.modal {
  display: flex;
  position: fixed;
  width: 100vw;
  height: 100vh;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  top: 0;
  left:0;
}

.modal p {
  display: block;
  font-size: 70px;
  color: white;
}
