@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");

* {
  font-family: "Roboto", sans-serif;
}

h1 {
  margin-top: 0;
}

h2 {
  margin-bottom: 10px;
}

#login {
  border-bottom: 1px solid #26201f;
}

#login:hover {
  cursor: pointer;
}

body {
  min-height: calc(100vh - 100px);
  background: #e6ddda;
  color: #26201f;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.body-404 {
  align-items: center;
}

.title-404 {
  font-size: 64px;
  font-weight: 100;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

input {
  border: 1px solid #fff;
  border-radius: 4px;
  line-height: 24px;
  font-size: 18px;
}

input:focus {
  outline: #b00265;
}

.required {
  font-size: 1.2em;
  color: #26201f;
}

form {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.form-row.inline {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.send-btn {
  background: #26201f;
  color: #fff;
  padding: 10px 0;
  border-color: #26201f;
  cursor: pointer;
  border-radius: 8px;
}

button {
  appearance: none;
  border: 0;
}

.send-btn:hover {
  background: #26201f;
}

.credentials {
  visibility: hidden;
  width: 400px;
  margin: 0 auto;
}

.credentials.visible {
  visibility: visible;
}

.code {
  color: #343535;
  background: #f7f7f9;
  font-family: monospace;
  word-break: break-all;
  border-radius: 4px;
  padding: 5px;
  display: block;
  margin-top: 5px;
}
