* {
    margin: 0;
    padding: 0;
    font-family: "Ubuntu";

}

body{
    background-color: #E03732;
    width: 100%;
    height: 100vh;
    overflow-y: hidden;
}
.conteiner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15vw;
    margin-top: 3vh;
    width: 67%;
    height: 69vh;
    background: #F6E483;
    box-shadow: 5px 5px 10px rgb(0, 0, 0)
}

.form-image{
    width: 50%;
    background-color: #F6E483;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.form-image img{
    width: 100%;
}

.form{
    display: flex;
    width: 50%;
    height: 58.5vh;
    background-color: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3rem;
    transition: all 1s;
}
.form-header{
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
}



.login-button{
    display: flex;
    align-items: center;
}
.login-button button{
    border: none;
    background-color: #E03732;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.login-button button:hover{
    background-color: #e65c58;
    transform: scale(1.2);
    transition: 0.65s;
}
.login-button button a{
    text-decoration: none;
    color: black;
}

.input-group{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.input-box{
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}

.input-box input{
    margin: 0.6rem 0;
    padding: 0.8rem ;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px #000000;    
}

.input-box input:hover{
    background-color: #eeeeee75;
}
    
.continue-button button{
    width: 100%;
    margin-top: 2.5rem;
    border: none;
    background-color: #E03732;
    padding: 0.62rem;
    border-radius: 5px;
    cursor: pointer;
}


.continue-button button a{
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    color: black;
}

.continue-button button:hover{
    background-color: #e65c58;
    transform: scale(1.1);
    transition: 0.65s;
}


header {
    background-color: #F6E483;
    height: 144px;
    display: flex;
    width: 100%;
    font-size: 33px;
}

header a {
    text-decoration: none;
    color: black;
}



#nav{
    margin-left: 5%;
    font-size: 25px;
    list-style: none;
    width: 70%;
    align-content: center;
    column-count: 5;
}

#person {
    width: 82px;
    height: 80px;
    margin-top: 30%;
    margin-left: 3%;
}

footer{
    display: flex;
    background-color: #F6E483;
    align-items: center;
    font-size: 20px;
    margin-top: 7.5vh;
    justify-content: space-around;
}

footer svg{
    width: 2%;
    margin-left: 10%;
    margin-right: 1%;
}

