@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    background-image: url(./assets/material-de-escritorio-teclado-xicara-de-cafe-cartao-oculos-vela-e-fone-de-ouvido-no-fundo-azul.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-position: 0%;
}

#form{
    display: flex;
    gap: 20px;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

label{
    color:#6a6e70;
    margin-bottom: 10px;
}

.title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: -20px;
    color: #6a6e70;
    text-align: center;
    font-size: 32px;
}

.line{
    background-color: #d9dad8;
    width: 100%;
    height: 2px;
}

.box{
    max-width: 350px;
    width: 85%;
    height: 380px;
    background-color: white;
    -webkit-box-shadow: 1px 7px 13px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 1px 7px 13px 0px rgba(0,0,0,0.5);
    box-shadow: 1px 7px 13px 0px rgba(0,0,0,0.5);
    padding: 10px 30px 10px 30px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.input{
    margin-top: 10px;
    background-color: #f2f4f8;
    width: 100%;
    font-size: 16px;
    padding: 8px 10px 8px 10px;
    border: 0;
}

.avatares{
    display: flex;
    gap: 50px;
}

.avatar{
    display: flex;
    gap: 8px;
}

#btn{
    font-weight: 500;
    cursor: pointer;
    border: 0;
    text-align: center;
    width: 100%;
    padding: 10px 50px 10px 50px;
    color: white;
    text-decoration: none;
    background-color: #718bd1
}