* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #fff;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.log-area {
	width: 80%;
	height: 80vh;
	margin: 10vh auto;
	position: relative;
}

.log-area .left-col {
	width: 50%;
	background: #00A0C6;
	float: left;
	height: 80vh;
}

.log-area .right-col {
	width: 50%;
	background: #00303C;
	float: right;
	height: 80vh;
}

.log-form {
	width: 50%;
	height: 50vh;
	margin: 15vh 25%;
	background: #fff;
	position: absolute;	
	z-index: 9;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.log-form .content {
	width: 63%;
	margin-left: 27%;
	margin-top: 5vh;
	height: 40vh;
}

.log-form .content h2 {
	font-size: 32px;
	font-weight: bold;
	color: #00303;
	text-transform: uppercase;
	padding-top: 20px;
	letter-spacing: 4px;
}

.log-form .content h3 {
	font-size: 18px;
	font-weight: bold;
	color: #00303;
	text-transform: uppercase;
	padding-top: 20px;
	letter-spacing: 1px;
}

.log-form .content input[type=text], .log-form .content input[type=password], select {
  width: 100%;
  padding: 12px 20px;
  margin: 4px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.log-form .content input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.log-form .content input[type=submit]:hover {
  background-color: #45a049;
}


.log-cal {
	width: 24%;
	height: 40vh;
	margin: 20vh 13%;
	background: #00303C;
	position: absolute;	
	z-index: 10;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.log-cal .clock {
	width: 90%;
	margin: 0 auto;
}

/* -----------Clock start------------------- */
#clockContainer {
	position: relative;
	margin: auto;
	height: 10vw;
	width: 10vw;
	background: url(../../images/clock.png) no-repeat;
	background-size: 100%;
}

#hour,
#minute,
#second {
	position: absolute;
	background: #fff;
	border-radius: 10px;
	transform-origin: bottom;
}

#hour {
	width: 1.8%;
	height: 25%;
	top: 25%;
	left: 48.85%;
	opacity: 0.8;
}

#minute {
	width: 1.6%;
	height: 30%;
	top: 19%;
	left: 48.9%;
	opacity: 0.8;
}

#second {
	width: 1%;
	height: 40%;
	top: 9%;
	left: 49.25%;
	opacity: 0.8;
}

/*------------Clock End -----------------*/

.log-cal .logo {
	width: 50%;
	margin: 20px auto;
	height: 50px;
}

.log-cal .logo img {
	width: 100%;
}


/*============== Responsive for Mobile View====================*/

@media screen and (max-width: 700px) {
    .log-area .left-col {
    display: none;
    }
    .log-area .right-col {
    display: none;
    }
    .log-form {
    	width: 100%;
    	margin: 0;
    }
    .log-cal {
    	display: none;
    }
    .log-form .content {
    	width: 90%;
    	margin: 5vh 5%;
    }
}