/*STYLE GERAL*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-image: url("./images/bg-intro-desktop.png");
  background-color: hsl(0, 100%, 74%) ;
}

/*STYLE CONTAINER*/
.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  width: 90%;
  margin: 5rem auto;
}

/*STYLE H1 DA DIV COM A CLASS INFO*/
.info h1 {
  color:white ;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
}

/*STYLE P DA DIV COM MA CLASS INFO*/
.info p {
  color: white;
  font-weight: 400;
  font-size: .875rem;
  margin-top: 2rem;
  max-width: 800px;
}

/*STYLE DO RETÂNGULO ROXO ACIMA DO FORMULÁRIO*/
.inscription .try-free {
  color: white;
  font-weight: 400;
  font-size: .875rem;
  background-color: hsl(248, 32%, 49%);
  padding: .8rem 1rem;
  text-align: center;
  border-radius: 1rem;
}

.inscription .try-free > span {
  font-weight: 600;
}

/*STYLE DO FORMULÁRIO*/
.inscription form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background-color: white;
}

/*STYLE DOS INPUTS DO FORMULÁRIO*/
.inscription form input {
  padding:.8rem 1rem;
  border-radius: .3rem;
  outline: none;
  border: 1px solid hsl(246, 12%, 86%) ;
  font-weight: 500;
  position: relative;
  color: hsl(249, 10%, 26%) ;
}

/*STYLE DOS INPUTS DO FORMULÁRIO EM ESTADO DE FOCO*/
.inscription form input:focus {
  border: 1px solid hsl(248, 32%, 49%);
  opacity: 1;
}

/*STYLE DOS PLACEHOLDER DOS INPUTS DO FORMULÁRIO*/
.inscription form input::placeholder {
  color: hsl(249, 10%, 26%) ;
}

/*STYLE DO BUTTON DO FORMULÁRIO*/
.inscription form button {
  text-transform: uppercase;
  font-weight: 500;
  font-size: .875rem;
  color: white;
  background-color: hsl(154, 59%, 51%);
  border: none;
  padding: .7rem 1rem;
  border-radius: .3rem;
  box-shadow: 0px .5px 1px 1.5px hsl(154, 59%, 45%);
  cursor: pointer;
}

.inscription form button:hover {
  opacity: .5;
}

/*STYLE DOS TERMOS DO FORMULÁRIO*/
.inscription form .terms {
  font-size: .65rem;
  color: hsl(246, 25%, 77%);
  text-align: center;
}

.inscription form .terms > a {
  color: hsl(0, 100%, 74%) ;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width:768px) {
  .container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}