* {
  box-sizing: border-box;
  margin: 0;
}
body {
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

/* Typography */
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 1rem;
}
h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 1rem;
}
p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

/* Buttons */
button.google {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 16px;
  cursor: pointer;
  margin: 2rem auto;
}
input[type="submit"] {
  background: #30A1DA;
  color: #fff;
  font-weight: 600;
  padding: .75rem 2.5rem;
  border: none;
  border-radius: 4px;
}