body {
  background: #f4f4f5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  color: #1a1a1a;
}

a {
  color: #dc2626;
  text-decoration-color: rgba(220, 38, 38, 0.35);
}
a:hover {
  color: #b91c1c;
}

.container {
  margin: 60px auto 15px auto;
  max-width: 480px;
}

.wrap {
  background: #fff;
  padding: 40px;
  box-shadow: none;
  border: none;
  border-top: 4px solid #dc2626;
  border-radius: 14px;
}

.header {
  border-bottom: none;
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.header .logo img {
  width: 56px;
  height: 56px;
  max-width: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #dc2626;
}

h2 {
  text-align: center;
  font-weight: 700;
  color: #1a1a1a;
}

input[type="text"], input[type="email"], input[type="password"], select {
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 10px;
  box-shadow: none;
}
input:focus {
  border-color: #dc2626;
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.button {
  background: #dc2626;
  border-radius: 10px;
  font-weight: 700;
}
.button:hover {
  background: #b91c1c;
}
.button.button-outline {
  border-color: #dc2626;
  color: #dc2626;
}
.button.button-outline:hover {
  border-color: #b91c1c;
  background-color: #b91c1c;
}

footer.container {
  text-align: center;
  color: #a3a3a3;
  font-size: 12px;
}
footer.container a {
  color: #a3a3a3;
}