*{
  padding: 0;
  margin: 0;
}
body{
  color: hsl(234, 29%, 20%);
  font-family: "Roboto";
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 375px;
  max-width: 768px;
}
.image{
  height: 280px;
  width: 100%;
  max-width: 400px;
  background-image: url(./assets/images/illustration-sign-up-mobile.svg);
  background-repeat: no-repeat;
  background-position: center;
}
article{
  width: 340px;
  padding-top: 20px;
}
.label{
  width: 96%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  height: 20px;
}
h1{
  font-size: 40px;
}
p, ul{
  font-size: 16px;
  color: hsl(235, 18%, 30%);
  padding-top: 20px;
  padding-bottom: 30px;
}
ul{
  list-style-type: none;
}
ul li{
  padding-left: 2rem;
  padding-bottom: 10px;
  background-image: url(./assets/images/icon-list.svg);
  background-position: 0 0;
  line-height: 1.5rem;
  background-repeat: no-repeat;
}

.form-control{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: left;
}
.form-control label{
  margin-left: 20px;
  padding-bottom: 10px;
  font-size: 14px;
}
 input{
  margin-left: 10px;
  width: 18rem;
  padding: 17px;
  border: solid .5px;
  border-radius: 7px;
  /* background-color: #ed626228; */
  border-color: #0000007e;
}
input::placeholder{
  font-size: 17px;
  color: #00000065;
}
button{
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 20px;
  padding: 17px;
  width: 20rem;
  background-color: hsl(235, 18%, 26%);
  border: none;
  border-radius: 7px;
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
}
span{
  font-size: 12px;
  color: #ea3939;
}
@media (min-width:1024px) {
  body{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(235, 18%, 26%);
  }
  main{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    height: 68vh;
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 30px;
  }
  .image{
    height: 85%;
    width: 400px;
    background-position: right;
    background-image: url(./assets/images/illustration-sign-up-desktop.svg);
    margin-right: 30px;
    border-radius: 20px;
  }
  article{
    width: 380px;
    height: 40%;
    margin-top: -220px;
    margin-bottom: 0px;
    margin-left: 20px;
    margin-right: 20px;
  }
  p, ul{
    font-size: 16px;
    color: hsl(235, 18%, 30%);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  button:hover {
    background: linear-gradient(to right, #ff416c, #fd5a3d); 
    color: white; 
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  .label{
    width: 85%;
  }
}
@media (min-width:1440px) {
  body{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(235, 18%, 26%);
  }
  main{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    height: 60vh;
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 30px;
  }
  .image{
    height: 85%;
    width: 400px;
    background-position: right;
    background-image: url(./assets/images/illustration-sign-up-desktop.svg);
    margin-right: 30px;
    border-radius: 20px;
  }
  article{
    width: 380px;
    margin: 40px;
  }
}