@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
}



body{
    display: flex;
    width: 100%;
    height: 100vh;
    background: #003461;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mae{
    display: flex;
    width: 100%;
    height: 100vh;
    background: #003461;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.075);
    width: 1500px;
    height: 700px;
    align-items: center;
    border-radius: 20px;
}




.imagem img{
    width: 500px;
    height: 500px;
    border-radius: 10px;
    border: 2px solid white;
}

h1{
    font-family: 'Ubuntu', sans-serif;
    padding: 10px;
    color: white;
    font-size: 40px;
}

label{
    font-family: 'Ubuntu', sans-serif;
    padding: 20px;
}

input{
    width: 400px;
    height: 50px;
    font-size: 20px;
    
    background-color: rgba(255, 255, 255, 0.301);
    border-radius: 30px;
    border: 1px solid white;
    color: white;
    padding: 10px;
    
}

::-webkit-input-placeholder  { 
    padding: 10px;
    color: #FCAF17; 
    font-size: 15px;

}



button{
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Ubuntu', sans-serif;
    padding: 5px;
    font-size: 15px;
}

button:hover{
    background-color: #FCAF17 ;
}





i{
    font-size: 30px;
    width: 40px;
    height: 48px;
    padding: 15px 5px 5px 5px;
    align-items: center;
    color: rgba(255, 255, 255, 0.274);
}

i:hover{
    color: #FCAF17;
}

.contato{
    font-size: 15px;
    padding-top: 10px;
}

p{
    color: white;
    font-size: 20px;
}

.texto{
    margin-right: 40px;
}

@media (max-width: 800px) {

    .imagem img{
        width: 300px;
        height: 350px;
    }

    input{
        width: 300px;
    }

    .texto{
        margin-top: 50px;
        margin-left: 40px;
        justify-content: center;
    }

    h1{
        font-size: 25px;
    }

    .mae{
        height: 823px;
        width: 411px;
    }

    .contato{
        font-size: 10px;
    }
    
    p{
        font-size: 12px;
    }
}