@font-face {
    font-family: 'aliceregular';
    src: url('./fontes/alice-regular-webfont.woff2') format('woff2'),
         url('./fontes/alice-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'arvoregular';
    src: url('./fontes/arvo-regular-webfont.woff2') format('woff2'),
         url('./fontes/arvo-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container {
    display: flex;
    height: 100vh;
    
}
#main{
    width: 70vw;
    background-color: rgb(242, 242, 248); 
    font-family: 'arvoregular';
}
#main p{
    margin-left: 1em;
}
#section1{
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 1.5em;
    font-weight: 500;
}
#section1 p{
    padding-bottom: 2em;
    width: 70%;
}
fieldset{
    border:none;
    background-color: white;
    height: 100%;
}
#aside{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30vw;
    background: no-repeat left/100vh url('./imagens/halie-west-25xggax4bSA-unsplash.jpg');
    color:white;    
    font-family: 'aliceregular', serif;
}
#aside p {
    margin-bottom: 2vh;
}

#logo{
    background-color: rgba(0,0,0,0.7);
    position: relative;
    top: 20vh;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    padding:1.2rem;
}
#logo img {
    width: 5rem;
}
button{
    background-color: #596D48;
    color:white;
    padding:0.75em;
    width: 15%;
    font-size: 1em;
    border-radius:10px;
    border:none;
    margin:2em 1em;
}
button:hover {
    background-color: #71974b;
    box-shadow: 1px 1px #596D48;
    transition: .3s all ease ;
}
form {   
    background-color: white;
    height: 30vh;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}

legend{
    margin-left: 1em;
    padding-top: 1em;
    font-weight: 500;
    font-size: 1.5em;
    
}
.linha {
    display:flex;
    flex-direction: column;
    margin-right: 1em;
    width: 35%;
}
.form-group{
    display: flex;
    flex-direction: row;
    margin: 1em; 
} 
input{
    width:100%;
    padding:0.5em;  
    border: 1px solid #E5E7EB; 
    border-radius: 5px;
}   
input[type=password]:invalid {
    border-color: red;
}
input[type=password]:valid {
    border-color: green;
}

input:focus {
    outline:none;
    border-color: blue;
    box-shadow: 1px 2px 2px rgba(0,0,0,0.3);
}