* {
	box-sizing: border-box;
}

body {
	/* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    padding: 0;
    margin: 0; 
		background: url(../assets/img/slider/bgfci-image2.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; 
}

h1 {
	font-weight: bold;
	margin: 0;
}

p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 10px 0 10px 30px;
}

span {
	font-size: 12px;
}

a {
	color: #333;
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

button {
	border-radius: 20px;
	border: 1px solid #FF4B2B;
	background-color: #FF4B2B;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

.form {
	/* background-color: #FFFFFF; */
	display: flex;
	align-items: center;
	/* justify-content: center; */
	margin-top:40px;
	margin-bottom:20px;
	flex-direction: column;
	/* padding: 0 50px; */
	/* height: 100%; */
	/* text-align: center; */
}
.form p{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
.form .form-input{ 
    background-color: #FFFFFF; 
    min-width: 400px;
	border-radius: 8px;
    /* padding: 15px;
	margin:10px; */
    /* border: 1px solid #ddd; */
}
.form input { 
    border-radius: 4px;
    max-width: 100%;
    /* border: 1px solid #ddd; */
}
.form label{
	margin: 0;
    font-weight: 400;
}
.form input.btn-success,
.form input.btn-success:hover{
	background-color: #2268BB;
}
.container-login .form-logo{ 
		background-color: #fff;
}
.container-login { 
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
}

.log-in-container {
	right: 0;
	width: 50%;
	z-index: 2;
}


.overlay-container {
	position: absolute;
	top: 0;
	/* left: 50%; */
	width: 50%;
	height: 100%;
}


.overlay {
	/* background: #FF416C;
	background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
	background: linear-gradient(to right, #FF4B2B, #FF416C);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0; */
    background: url(../assets/img/farmer.jpg) center center no-repeat;
    background-size: cover;
	color: #FFFFFF;
	position: relative;
	/* left: -100%; */
	height: 100%;
	/* width: 200%; */
}

.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
}


.overlay-right {
	right: 0;
}


.social-container {
	margin: 50px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}
*:focus {
    outline: none;
}
.form-container-landing .form{
    height: 50vh;
    display: flex;
    justify-content: center; 
	
}
 /**
  * MOBILE OVERRIDES
  */
  @media only screen and (max-width: 764px){ 
    .log-in-container { 
        width: 100%;  
    } 
	.overlay-container{
		display: none;
	}
	.form-container{
		overflow: scroll;
	}
	.form .form-input{
		padding:15px;
	}
	.form{ 
		height: initial;
	}
	
 }
 @media only screen and (min-width: 764px){ 
	.mobile-xs{
		display: none;
	}
 }