* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body, html {
    background-color: #225775;
    width: 100vw;
    height: 100vh;
}

main {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    background-color: rgb(255, 255, 255);
    width: 265px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.522);
    transition: width 0.2s, height 0.2s;
    transition-timing-function: ease;
}

#foto {
    background: #621b74 url('../img/laranja.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 200px;
}

#formulario {
    padding: 10px;

}
 
#formulario h1{
    text-align: center;
    margin-bottom: 10px;
}

#formulario p {
    font-size: 0.8em;
}

form > div.campo {
    display: block;
    border: 2px solid #2F2230;
    background-color: #2F2230;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    margin: 5px 0px;
}

form label {
    display: none;
}

img {
    width: 1em;
}

div.campo > span, img {
    
    color: white;
    font-size: 2em;
   
}

div.campo > input {
    
    background-color: hsl(201, 34%, 60%);
    height: 100%;
    width: calc(100% - 37px);
    font-size: 1em;
    border-radius: 8px;
    border: none;
    padding: 4px;
    transform: translateY(-9px);
}

div.campo > input:focus-within {
    background-color: white;
    border: none;
}

input#enviar {
    display: block;
    font-size: 1em;
    width: 100%;
    height: 40px;
    background-color: #005989;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

input#enviar:hover{
    background-color: #3a8bb7;
}

a{
    display: block;
    margin-top: 10px;
    font-size: 1em;
    width: 100%;
    height: 40px;
    padding-top: 8px;
    margin-top: 5px;
    background-color:white;
    color: #225775;
    text-align: center;
    text-decoration: none;
    border: 1px solid #225775;
    border-radius: 8px;
}

a:hover{
    background-color: #3a8bb7;
}
