@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
	background: #FCFBFC;
	/*
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	*/
	font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}



.container {
	width: 100%;
	overflow: hidden;
}

.login-left {
    width: 50%;
    float: left;
    background: url(../img/bg-financeiro.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}


.left-content {
	width: 100%;
	background: rgb(255,98,6);
	background: linear-gradient(180deg, rgba(255, 98, 6, 0.9) 0%, rgba(33, 26, 191, 0.9) 100%);	
    overflow: hidden;
    text-align: center;
    color: #333;
	height: 100vh;
}


.login-right {
	width: 50%;
	float: right;
	background: #fff;
	height: 100vh;
}


.row-form {
	width: 400px;
	margin: 0 auto;
	text-align: center;
	padding: 20vh 0;
}

.row-form img {
	width: 200px;
	padding-bottom: 20px;
}

.row-form h1 {
    margin: .5rem 0 2.1875rem;
    font-weight: 800 !important;
    color: #000;
	font-size: 1.25rem;
}

.row-form h2 {
	font-weight: 600;
    margin-bottom: 0;
    font-size: 1rem;
    color: #656565;
}

.row-form h3 {
    margin: .5rem 0 2.1875rem;
    font-weight: 800 !important;
    color: #000;
	font-size: 1rem;
}


.row-form input {
	width: 100%;
	padding: 18px;
    border: .0625rem solid transparent;
    border-radius: .5rem;
	font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
	background-clip: padding-box;
	background-color: #ededed;
	margin-bottom: 10px;
}


.row-form button {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #E46426;
    background-color: #E46426;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    padding: 14px;
    transition: transform 80ms ease-in;
    margin-top: 20px;
    cursor: pointer;
    transition: all .3s ease;
}

.row-form button:hover {
    border: 1px solid #004A69;
	background-color: #004A69;
}

.row-form a {
	text-align: left;
	display: block;
	font-size: 14px;
	margin-top: 20px;
	text-decoration: none;
}



/* RESPONSIVE */


@media only screen and (max-width: 990px){
	.login-left {
    	width: 30%;
	}

	.login-right {
    	width: 70%;
	}
}


@media only screen and (max-width: 700px){
	

	.login-left {
		display: none;
	}

	.login-right {
		width: 100%;
	}

	.row-form {
		width: 300px;
	}

	.topo-logo {
		margin-left: 65px;
	}
}


