body {
    background-image: url(images/bg-intro-desktop.png);
    background-color: hsl(0, 100%, 74%);
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-size: 16px;
}

#main{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:90px;
}

#text{
    width: 550px;    
    margin-left: 50px;
    font-size: 20px
}

#try{
    background-color: hsl(248, 32%, 49%);
    height: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 12px 15px 4px rgba(0,0,0,0.78);

}

#lTry{
    color: white;
}

#form{
    background-color: white;
    height: 420px;
    width: 500px;
    border-radius: 10px;

}

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

input{
    width: 80%;
    height: 40px;
    border-radius: 5px;
    border: 2px solid lightgray;
    padding-left: 20px;
    margin-bottom: 25px;
}


input:focus{
    outline: none;
    border-color: hsl(248, 32%, 49%);

}

.inputs{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}

#terms{
    color: hsl(246, 25%, 77%);  
    font-size: 10px;
    text-align: center;
    margin-top: 0;
    padding-bottom: 20px;

}

#tas{
    color: hsl(0, 100%, 74%);    
}

a{
    text-decoration:none;
    color: hsl(0, 100%, 74%);    
}

#submit{
    color: white;
    background-color:  hsl(154, 59%, 51%);
    height: 50px;
    width: 85%;
    margin-bottom: 5px;
}

.warning{
    color: hsl(0, 100%, 74%);
    margin: 0;
    align-self: flex-end;
    margin-right: 40px;
    margin-bottom: 10px;
    font-size: 10px;
    font-style: italic;
    margin-top: 5px;
    display: none;

}

img{
    position: absolute;
    align-self: flex-end;
    padding-right: 70px;
    padding-bottom: 25px;
    display: none;

}



