* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}
body {
  height: 100vh;
  width: 100vw;
  background-color: hsl(234, 29%, 20%);
}
main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.signup_page {
  background-color: hsl(0, 0%, 100%);
  width: fit-content;
  height: fit-content;
  display: flex;
  padding: 10px;
  margin: 0rem auto;
  border-radius: 5px;
}
.signup_page .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.left h1{
    font-size: 2.5rem;
    letter-spacing: 2px;
}
.left p {
  margin: 1rem 0;
}
ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}
ul li{
    display: flex;
}
ul svg {
  height: 18px;
}
.signup_input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signup_input label {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
.signup_input label span:nth-child(2){
    color: red;
}
input {
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid #e9e7e7;
  outline: none;
}
.input_error{
    background-color: rgb(229, 175, 175);
    border: 1px solid hsl(4, 100%, 48%);
    color: hsl(4, 100%, 48%);
}
.mobile{
    display: none;
}
.signup_input button {
  padding: 1rem;
  background-color: hsl(234, 29%, 20%);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 700;
}
.success_page{
    background-color: white;
    padding: 3rem;
    gap: 1rem;
    display: none;
    flex-direction: column;
    border-radius: 15px;
    width: 500px;
    color: hsl(234, 29%, 20%);
}
.success_page svg{
    height: 50px;
}
.success_page h1{
    font-size: 3rem;
    font-weight: 700;
}
.success_page p{
    margin: 1rem 0;
}
.success_page button{
    padding: 1rem;
    background-color: hsl(234, 29%, 20%);
    border-radius: 5px;
    color: white;
    font-weight: 700;
    border: none;
}
@media screen and (max-width:375px) {
    .desktop{
        display: none;
    }
    .mobile{
        display: flex;
    }
    .right{
        order: 1;
    }
    .left{
        order: 2;
    }
    .signup_page{
        flex-direction: column;
    }
}