body.page-home {
  background-color: #fafafa;
  background-color: var(--color-row);
  overflow: hidden;
}

.home-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.home-card {
  width: 90vw;
  max-width: 500px;
  background-color: #ffffff;
  background-color: var(--color-surface);
  border-radius: 4px;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
}

.home-card-header {
  display: flex;
  justify-content: center;
  padding: 16px 16px 0;
}

.home-card-header h1 {
  margin: 0;
  color: #212121;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}

.home-card-content {
  padding: 16px;
}

.home-field {
  margin-bottom: 15px;
  width: 100%;
}

.home-field label {
  display: block;
  color: rgba(0, 0, 0, .6);
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
}

.home-field input {
  display: block;
  width: 100%;
  height: 32px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .42);
  border-radius: 0;
  background: transparent;
  color: #212121;
  outline: 0;
}

.home-field input:focus {
  border-bottom: 2px solid #3f51b5;
  border-bottom: 2px solid var(--color-primary);
}

.home-field input[aria-invalid="true"] {
  border-bottom-color: #f44336;
  border-bottom-color: var(--color-error);
}

.home-field-error {
  padding-top: 4px;
  color: #f44336;
  color: var(--color-error);
  font-size: 12px;
  line-height: 16px;
}

.home-submit-row {
  display: flex;
  justify-content: center;
}

.home-submit {
  min-width: 64px;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  background-color: #3f51b5;
  background-color: var(--color-primary);
  color: #ffffff;
  color: var(--color-text-white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  text-transform: uppercase;
}

.home-submit:hover {
  background-color: #303f9f;
  background-color: var(--color-primary-dark);
}

.home-submit:focus {
  outline: 2px solid #3f51b5;
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
