@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: rgba(255, 255, 255, 0.904);
}

.containerPai {
  width: 100%;
  height: 100vh;
  background-color: #0d0411;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background-color: rgba(255, 255, 255, 0.089);
  padding: 40px 32px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input {
  background-color: rgba(255, 255, 255, 0.116);
  color: rgba(255, 255, 255, 0.925);
  outline: none;
  border: none;
  padding: 12px 16px;
  border-radius: 24px;
}

input:focus {
  border: 2px solid rgba(255, 255, 255, 0.267);
  background-color: rgba(255, 255, 255, 0.274);
}

button {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 24px;
  outline: none;
  border: none;
  margin-top: 12px;
  font-weight: 600;
}

h1 {
  font-family: "Sora", sans-serif;
}

h3 {
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

p {
  font-family: "Inter", sans-serif;
  padding-bottom: 24px;
}

/*ERROS*/

.erro {
  border-radius: 24px;
  background-color: rgb(255, 185, 185);
  color: rgb(221, 40, 40);
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.erro::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 4%;
  z-index: 10;
  border: 6px solid;
  border-color: transparent transparent rgb(255, 185, 185) transparent;
}

@media screen and (max-width: 700px) {
  .card {
    width: 90%;
  }
}
