/* Resetar alguns estilos padroes */
/* Link: https://www.joshwcomeau.com/css/custom-css-reset/ */
@import url(/css/styled_elements.css);
:root {
  --main-font: "Fraunces", serif;
  --sec-font: "Merriweather", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(#1b1025, #101125);
  height: 98vh;
  color: #ddd;
}

input,
button,
textarea,
select {
  font: inherit;
}

p {
  text-wrap: pretty;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "SOFT" 0, "WONK" 0;

  background: linear-gradient(to bottom, #eacd3e, #e0a901);
  background-clip: text;
  color: transparent;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-wrap: balance;
}

/* UTILIDADES */
.align-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 2rem;
}

.bottom {
  bottom: 0;
}

.underline {
  text-decoration: underline;
  text-decoration-color: rgb(248, 183, 0);
  text-underline-offset: 0.5rem;
}

.text-effect {
  background: linear-gradient(to bottom, #c07dff, #555bfc);
  background-clip: text;
  color: transparent;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header {
  padding-bottom: 20px;
}

header div {
  gap: 0.5rem;
  padding: 1rem 0;
}

header span {
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 1.5rem;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.container {
  position: relative;
  display: flex;
  justify-content: center;

  width: 100%;
  margin: 60px 0;
}

.content {
  padding: 40px;
  flex-direction: column;
}

.form-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.form-list > div {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

input {
  color: #ddd;
}

input:focus-visible {
  outline: 2px solid #8328d8;
  border: 2px solid #8328d8;
}

.btn {
  font: var(--main-font);
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid rgb(248, 183, 0);
  background-color: rgba(248, 182, 0, 0.062);
  transition: color 0.4s;
}

.btn:hover {
  background-color: rgba(248, 182, 0, 0.281);
}

.btn:focus-visible {
  outline: 2px solid #8328d8;
  border: 2px solid #8328d8;
}

footer p {
  font-size: 1.2rem;
}

/* RESPONSIVIDADE */
@media (max-width: 425px) {
  .content {
    padding: 20px 10px 50px 10px;
  }

  .title {
    font-size: 1.5rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border: 2px solid rgb(248, 183, 0);
  }

  .form-list {
    gap: 2rem;
  }
}
