
html, body {height: 100%;}


.login{
	height: 100vh;
    overflow: auto;
}

.login .row {
	height: 100%;
	margin: 0;
	overflow:hidden;
}

.col-1{
	height: 100%;
	background-color: #87CBF4;
	position: relative;
}

.col-1 h2{
	font-size: 27px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
	line-height: 40px;
	text-align: center;
}

.col-1 h2 span{
	color: #13157C;
	font-weight: bold;
}

.col-2{
	height: 100%;
	background-color: #F6F6F6;
	position: relative;
}

.login-bg{
	
	overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.col-2 h3{
	margin-bottom: 40px;
	font-family: 'Open Sans', sans-serif;
}

.col-2 .black_i{
	color: #000;
}

.login-form {
    overflow: hidden;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 450px;
}

.mt-0{
	margin-top:0px;
}

.mtb-5{
	margin-top: 50px;
	margin-bottom:50px;
}

.event-logo{
	width: 200px;
}

.col-2 .btn{
	background-color: #1C60A4;
	color: #fff;
	font-family: 'Lato', sans-serif;
}

.tick_icon{
	color: #34AE69;
	font-size: 60px;
}

.cross_icon{
	color: #F5800E;
	font-size: 60px;
}

.col-2 p{
	font-size: 14px;
	color: #5A5A5A;
	font-family: Lato, 'sans-serif';
}

/* The container */
.containr {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.containr input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #afafaf;
  background: #fff;
  border-radius: 100%;
}

/* On mouse-over, add a grey background color */
.containr:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containr input:checked ~ .checkmark {
  background-color: #87cbf4;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containr input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containr .checkmark:after {
	left: 6px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.overflow-hidden{
	overflow: hidden;
}

.plr-0{
	Padding-left: 0px;
	padding-right: 0px;
}




@media only screen and (max-width: 992px){
	.login-form{
		width: 100%;
	}
	
	.login-bg img{
		width: 100%;
	}
	
	.col-1 h2{
		font-size: 22px;
	}
}

@media (max-width: 767px){
	.col-1{
		display:none;
	}
	
}