body{
    margin: 0;
    height: 100vh;
    font-family: 'DM Sans', sans-serif;
}
.wrapper{
    display: flex;
}
.panel_left{
    background: url("../public/images/refinery.jpg");
    background-position: -370px 0;
	background-size: cover;
    width: 50%;
	height: 100vh;
    object-fit: cover;
}
.container{
    color: #fff;
    background-color: #072872;
    width: 69%;
    padding: 0;
    text-align: center;
}
.header{
    display: flex;
    justify-content: space-between;
    margin: 50px;
}
.logo{
    width: 110px;
}

.cont{
    position: relative;
    top: 30%;
    transform: perspective(1px) translateY(-30%);
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
}
.cont h1{
    font-size: 38px;
	width: 300px;
}
.cont form{
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
}
.cont form input{
    height: 47px;
    width: 294px;
    margin-bottom: 10px;
}
.cont form button{
    width: 294px;
    height: 47px;
    background-color: rgba(74,171,231,33%);
    border: 2px solid rgb(74,171,231);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
}
.cont form button:hover{
    background-color: rgb(74,171,231);
    border: 2px solid rgba(74,171,231,33%);
}
.cont a {
    outline: none;
    text-decoration: none;
    padding: 2px 1px 0;
    color: #fff;
}
