*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.container{
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card{
    width: 80%;
    height: 80vh;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card .row{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .row .col{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .row .col.container-form{
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card .row .col.container-form img{
    margin-bottom: 20px;
}
.card .row .col.container-form h1{
    margin-bottom: 20px;
    color: #b27c4c;
}
.card .row .col.container-form form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card .row .col.container-form form input{
    width: 80%;
    height: 40px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #b27c4c;
    outline: none;
    font-size: 16px;
    padding-left: 10px;
}
.card .row .col.container-form form input[type="submit"]:hover{
    background-color: #fff;
    color: #b27c4c;
    border: 1px solid #b27c4c;
    border-radius: 5px;
    cursor: pointer;
}
.card .row .col.container-form form input[type="submit"]{
    width: 40%;
    background-color: #b27c4c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.card .row .col.container-img{
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .row .col.container-img img{
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 10px;
}
.head-form{
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.head-form img{
    margin-right: 10px;
    border-radius: 50%;
}
@media (max-width: 768px){
    .card .row .col.container-form{
        width: 100%;
    }
    .card .row .col.container-img{
        display: none;
    }
}