* {
  padding: 0;
  margin: 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%);
  background-size: cover;
  background-repeat: no-repeat;
}

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



.container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.hero-section {
  width: 50%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

p {
  font-weight: 300;
}

.form-section {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-banner {
  text-align: center;
  color: white;
  background-color: hsl(248, 32%, 49%);
  border-radius: 0.5rem;
  box-shadow: 0px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
}

.bold {
  font-weight: 700;
}

.signup-form {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0px 6px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-section {
  width: 100%;
}

.input-box {
  width: 100%;
  border: 1px solid hsl(246, 25%, 77%);
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.7rem 1.4rem;
  gap: 0.3rem;
}
.input-box i {
  display: none;
}

input {
  width: 100%;
  border: none;
  font-weight: 500;
  color: hsl(249, 10%, 26%);
}

input:focus {
  outline: none;
}

.signup-btn {
  width: 100%;
  padding: 0.7rem 0;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  background-color: hsl(154, 59%, 51%);
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0px 3px 0 rgba(0, 0, 0, 0.2)
}
.signup-btn:hover {
  cursor: pointer;
  background-color: hsl(154, 59%, 71%);
  transition: all 0.3s ease-in-out;
}

.signup-form p {
  font-size: 0.6rem;
  text-align: center;
  color: hsl(246, 25%, 77%);
}

a {
  text-decoration: none;
  font-weight: 600;
  color: hsl(0, 100%, 74%);
}

.error {
  font-size: 0.6rem;
  color: hsl(0, 100%, 74%);
  text-align: right;
  font-style: italic;
  margin-top: 0.3rem;
}

@media screen and (max-width: 625px) {
  main {
    height: auto;
    display: block;
  }
  .container {
    width: 90%;
    flex-direction: column;
    margin-top: 5rem;
  }
  .hero-section {
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  .hero-section p {
    font-weight: 400;
  }
  .form-section {
    width: 100%;
    margin-bottom: 4rem;
  }
  .form-banner {
    padding: 1rem 3rem;
  }
  .signup-form p {
    padding: 0 2rem;
  }
}