* {
  box-sizing: border-box;
}
body {
  font-family: Poppins, sans-serif;
  background: rgb(97, 91, 251);
  background: radial-gradient(
    circle,
    rgba(97, 91, 251, 1) 0%,
    rgb(255, 255, 255, 1) 300%
  );
  color: #fff;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
header {
  position: absolute;
  padding-block: 10px;
}
.logo {
  letter-spacing: -0.6px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
}
h1 {
  font-weight: 500;
}
textarea {
  field-sizing: content;
  max-width: 400px;
  resize: none;
  overflow: auto;
  border-radius: 20px;
  padding: 1em;
  outline: none;
}
main {
  padding-inline: 1em;
  height: 100vh;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.btn-primary {
  color: #1966e2;
  text-align: center;
  text-transform: none;
  background-color: #fff;
  border: 0 #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: auto;
  max-height: 60px;
  padding: 14px 40px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s, background-color 0.3s;
  display: inline-block;
  cursor: pointer;
  line-height: inherit;
}
