* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary: rgb(255, 147, 78);
  --primary-hover: rgb(245, 112, 30);
  --project-blue: #36388c;
  --project-blue-hover: #2c2e72;
  --project-blue-soft: rgba(54, 56, 140, 0.08);
  --branco: white;
  --background: rgb(242, 246, 255);
}

body {
  font-family: "Poppins", sans-serif !important;
  background: var(--background);
}

button,
p,
strong,
label,
input {
  font-family: "Poppins", sans-serif !important;
}

main {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main section {
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main section a:hover > img {
  transform: scale(1.2);
}

main section a > img {
  max-width: 120px;
  transition: all 0.4s;
}

main section > span {
  margin-top: 25px;
  text-decoration: none;
  font-weight: 500;
  color: rgb(126, 147, 177);
}

main section > span > a {
  color: var(--primary);
  text-decoration: none;
}

main section > span > a:hover {
  color: var(--primary-hover);
}

main section form {
  width: 100%;
  margin-top: 15px;
  padding: 30px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0px 0px 12px rgb(0 0 0 / 3%);
}

main section form strong {
  color: rgb(49, 80, 125);
  font-weight: 500;
  font-size: 1.3rem;
}

main section form p {
  color: rgb(49, 80, 125);
  font-size: 1rem;
  margin-bottom: 30px;
}

main section form label {
  color: rgb(49, 80, 125);
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  width: 100%;
  text-align: left;
  margin-top: 12px;
  cursor: auto;
}

main section form label:first-child {
  margin-top: 0;
}

main section form div {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(219, 225, 233);
  padding: 8px 12px;
  border-radius: 5px;
  width: 100%;
}

main section form div svg {
  width: 20px;
  color: var(--primary);
}

main section form div input {
  margin-left: 8px;
  border: none;
  background: transparent;
  outline: 0;
  flex: 1;
  font-size: 0.88rem;
}

main section form button,
main section form .login-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 13px;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
}

main section form button {
  margin-top: 30px;
  border: 0;
  outline: 0;
  color: white;
  background: var(--primary);
  cursor: pointer;
}

main section form button:hover {
  background: var(--primary-hover);
}

main section form .login-back-btn {
  margin-top: 12px;
  border: 1px solid var(--project-blue);
  background: transparent;
  color: var(--project-blue);
}

main section form .login-back-btn:hover {
  background: var(--project-blue);
  color: white;
  border-color: var(--project-blue-hover);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  transition: background-color 5000s ease-in-out 0s;
}

@media (max-width: 600px) {
  body {
    background: white;
  }

  main section {
    max-width: 100%;
  }

  main section form {
    margin-top: 0;
    padding: 15px;
    box-shadow: none;
  }

  main section > span {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 15px;
  }
}
