.attribution { font-size: 11px; text-align: center; position: absolute; bottom: 0; }
.attribution a { color: hsl(228, 45%, 44%); }
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0; 
    box-sizing: none;
}
body {
    background-color: hsl(235, 18%, 26%);
    font-family: Roboto;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}
.first {
    background-color: hsl(0, 0% , 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 15px;
    height: 450px;
    width: 720px;
}

.content {
    margin: 0 25px;
}
.one {
    margin: 15px 0;
}
h1 {
    font-weight: 700;
    font-size: 45px;
    margin: 15px 0;
}
p {
    font-weight: 400;
    color: hsl(235, 18%, 26%);
}
.second {
    background-color: hsl(0, 0% , 100%);
    border-radius: 20px;
    width: 350px;
    max-height: 400px;
    padding: 30px;
  }

.hide {
    display: none;
  }
button {
    background-color: hsl(234, 29%, 20%);
    border-radius: 5px;
    color: hsl(0, 0% , 100%);
    height: 45px;
    margin-top: 20px;
    border: none;
    outline: none;
    cursor: pointer;
}
.Dismiss {
    width: 100%;
}
ul {
    list-style-image: url(assets/images/icon-list.svg);
    margin-bottom: 25px;
    list-style-position: inside;
    color: hsl(235, 18%, 26%);
}
li {
    line-height: 1;
    margin-bottom: 10px;
    font-size: 15px;
}
label {
    font-weight: bold;
    font-size: 13px;
}
#message {
    color:  hsl(4, 100%, 67%);
    font-weight: bold;
    font-size: 13px;
}
.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
form {
    display: flex;
    flex-direction: column;

}
.right {
    width: 40%;
    height: 450px;
    padding-right: 15px;
}
.right img {
    height: 100%;
}
input {
    border-radius: 5px;
    height: 45px;
    border: 1px solid hsl(231, 7%, 60%);
    margin-top: 10px;
    padding: 0 15px;
    font-size: 15px;
}
button:hover {
    background-image: linear-gradient(to right, rgb(223, 65, 97), rgb(246, 124, 42));
}
@media (max-width: 700px) {
    .first {
        border-radius: 0;
        display: flex;
        flex-direction: column-reverse;
        padding: 0;
        height: 100vh;
        width: 100%;
        margin: 0;
        font-size: 17px;
    }   
    .content {
        margin: 0;
        padding: 1rem 1.5rem;
        line-height: 1.5; 
        font-size: 18px;
        margin-top: auto;
    }
    .one {
        margin: 10px 0;
    }
    .second {
        background-color: hsl(0, 0% , 100%);
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 0;
        padding-top: 25%;
      }
      .second h1 {
        line-height: 1;
      }
      .hide {
        display: none;
      }
    .second img {
        width: 70px;
        margin-bottom: 20px;
    }
    .second button {
        margin-top: auto;
        margin-bottom: 5%;
    }
    .right {
        width: 100%;
        padding: 0;
        height: unset;
        position: absolute;
        top: 0;
    }
    .right img {
        content: url(assets/images/illustration-sign-up-mobile.svg);
        height: 100%;
        width: 100%;
    }
       
}