/**
 * GLOBAL OVERRIDES START
 */
 body {
 	background: #fff; /* fallback for old browsers */
 	font-family: "Roboto", sans-serif;
 	-webkit-font-smoothing: antialiased;
 	-moz-osx-font-smoothing: grayscale;
     padding-top:0px!important;
 	/*width: 100vw;
 	height: 100vh;
 	display: table;*/
 }
 .btn{
 	line-height: 42px;
 	padding-top: 0;
 	padding-bottom: 0;
 	height: 35px;
 }
 .form-control{
 	padding-top: 0;
 	padding-bottom: 0;
 	line-height: 42px;
 	height: 35px;
     background-color:#ffffff;
 	box-shadow: none !important;
 }
 .form-control:focus{
 	border-color: #329478;
 }

/**
 * LOGIN BOX
 */
 .swachh-login-container{
 	/*display: table-cell;
 	width: 100%;
 	height: 100%;
 	vertical-align: middle;*/
 	text-align: center;
 }
.swachh-login-box {
    display: inline-block;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 2px 6px 12px 0px rgba(0,0,0,0.14);
    border-radius: 8px;
    margin-top: 20px;
}
 .swachh-login-content{
 	display: table;
 	width: 100%;
 	table-layout: fixed;
 }
 .swachh-login-content > div{
 	display: table-cell;
 	vertical-align: middle;
 	position: relative;
 }
.swachh-login-right {
    text-align: center;
    padding: 4em 8em;
    background-color: #46494B;
}
    .swachh-login-right h2 {
        color:#fff;
    }
    .swachh-login-logo {
        height: 120px;
    }

 /**
  * FORM CONTROL OVERRIDES
  */
 .swachh-login-container .form-control{
 	padding: 0 18px;
 	line-height: 42px;
 	height: auto;
 }
 .swachh-login-quote{
 	position: absolute;
 	bottom: 0;
 	left: 0;
 	width: 100%;
 	border-top: 1px #dee1e4 solid;
 	line-height: 64px;
 	font-size: 16px;
 }


 /**
  * MOBILE OVERRIDES
  */
 @media only screen and (max-width: 768px){
 	.swachh-login-content {
 		display: block;
 	}
 	.swachh-login-content > div{
 		display: block;
 	}
 	.swachh-login-right,
 	.swachh-login-left{
 		padding: 5em 3em;
 	}
 	.swachh-login-quote{
 		display: none;
 	}
 }