@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap");

.attribution {
  font-size: 11px;
  text-align: center;
  color: white;
}

.attribution a {
  color: orange;
}

/* * {
  box-sizing: border-box;
} */

body {
  background-color: hsl(234, 29%, 20%);
  font-family: "Roboto", sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  align-items: center;
  min-height: 100vh;
  max-width: 800px;
}

.card {
  background-color: hsl(0, 0%, 100%);
  width: 800px;
  height: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  padding: 15px;
}

.card-2 {
  background-color: hsl(0, 0%, 100%);
  width: 300px;
  height: 300px;
  border-radius: 20px;
  padding: 30px;
  margin-inline: auto;
}

.left {
  width: 60%;
  padding: 40px;
}

.right {
  width: 40%;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  padding: 0;
  margin: 0;
}

.right img {
  width: 100%;
}

ul {
  list-style-image: url(./assets/images/icon-success.svg);
}

li {
  font-size: 14px;
  padding: 5px;
}

p {
  font-size: 14px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 11px;
  padding-bottom: 5px;
  font-weight: 600;
}

input {
  padding: 10px 20px;
  border-radius: 5px;
  outline: none;
  border: 1px solid hsl(0, 0%, 58%);
}

button {
  padding: 10px 25px;
  margin-top: 20px;
  border: none;
  outline: none;
  color: white;
  background-color: hsl(234, 29%, 20%);
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: hsl(4, 100%, 67%);
  transition: 1s all ease-in-out;
}

.hide {
  display: none;
}

.icon-card-2 {
  width: 50px;
}

.card-2 button {
  margin-inline: auto;
  width: 100%;
}

@media (max-width: 600px) {
  body {
    /* background-color: white; */
    margin: 0;
  }

  .card {
    height: 800px;
    width: 100%;
    padding: 0;
    flex-direction: column-reverse;
  }
  .left {
    width: 90%;
    justify-content: center;
    align-items: center;
  }

  .right img {
    content: url(./assets/images/illustration-sign-up-mobile.svg);
    width: 100%;
    height: 100%;
  }

  .right {
    width: 100%;
  }
  .attribution {
    display: none;
  }

  form {
    width: 90%;
  }
}
