@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Libre Franklin', sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-container{
    width: 95%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 10px ;
}
.imgs{
    min-width:90%;
    min-height: 391px;
    background-image: url(./images/illustration-dashboard.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.input-btn{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px 0px;
}
.inputs{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.soon{
    font-weight: 300;
    color: hsl(0, 0%, 59%);
}
.sub{
    font-size: 16px;
    padding-bottom: 10px;
}
h2{
    padding-bottom: 10px;
    padding-top: 10px;
}
input{
    width: 100%;
    height: 40px;
    border-radius: 20px;
    text-indent: 20px;
    border: 1px solid hsl(0, 0%, 59%);
}
.valid-email{
    align-self: flex-start;
    font-size: 13px;
    margin:5px 0px 10px 20px ;
    color: hsl(354, 100%, 66%);
    visibility: hidden;
}

.btns{
    height: 40px;
    width: 100%;
    border-radius: 20px;
    font-weight: 700;
    border-style: none;
    color: white;
    background-color: hsl(223, 87%, 63%);
    box-shadow: 0px 2px 10px hsl(223, 97%, 75%);
}
.btns:hover{
    background-color: hsl(223, 97%, 75%);
}
.ic{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    background-color: white;
    justify-content: center;
    align-items: center;
    background-size: contain;
    border-style: none;
    transition: .2s;
}
.ic:hover{
    transition: .2s;
    background-color: hsl(223, 87%, 63%);
}
.ic path{
    transition: .2s;
    fill: hsl(223, 87%, 63%);
}


.ic:hover path{
    transition: .2s;
    fill: white;
}
.sub{
    font-size: 13px;
}

.inp-vis{
    border: 2px solid hsl(354, 100%, 66%);
}
.vis{
    visibility: visible;
}

footer{
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom:30px ;
}
.icons{
    width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}
.copyright{
    font-size: 14px;
    color: hsl(0, 0%, 59%);
}

@media(min-width:768px){
    body{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .btns{
        width:235px;
    }
    .main-container{
        width: 645px;
    }
    input{
        width: 400px;
    }
    .input-btn{
        display: flex;
        flex-direction: row;
        justify-content:space-between;
        align-items: flex-start;
    }
}
@media (max-width:767px){
    .btns{
        max-width:500px
    }
    .inputs{
        max-width: 500px;
    }
}