 @charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Open+Sans');
 body {
	font-family: 'Open Sans', sans-serif!important;
	background: #16365c;
	margin: 0;
	padding: 0;
	background-image: url(../images/01.jpg);
	background-attachment: fixed;
	background-size: cover;
}


.rerun {
	margin: 0 0 30px;
	text-align: center;
}
.rerun a {
	cursor: pointer;
	display: inline-block;
	background: #ed2553;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	padding: 10px 20px;
	color: #ffffff;
	text-decoration: none;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.rerun a:hover {
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
/* Scroll To Bottom */

#codepen,
#portfolio {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #363636;
	width: 56px;
	height: 56px;
	border-radius: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	color: #ffffff;
	text-align: center;
}
#codepen i,
#portfolio i {
	line-height: 56px;
}
#codepen:hover,
#portfolio:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
/* CodePen */

#portfolio {
	bottom: 96px;
	right: 36px;
	background: #ed2553;
	width: 44px;
	height: 44px;
	-webkit-animation: buttonFadeInUp 1s ease;
	animation: buttonFadeInUp 1s ease;
}
#portfolio i {
	line-height: 44px;
}
/* Container */

.container.active .card:first-child {} .container.active .card:nth-child(2) {
	background: #fafafa;
	margin: 0 10px;
}
.container.active .card.alt {
	top: 20px;
	right: 0;
	width: 100%;
	min-width: 100%;
	height: auto;
	border-radius: 5px;
	padding: 60px 0 40px;
	overflow: hidden;
}
.container.active .card.alt .toggle {
	position: absolute;
	top: 40px;
	right: -70px;
	box-shadow: none;
	-webkit-transform: scale(10);
	transform: scale(10);
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
}
.container.active .card.alt .toggle:before {
	content: '';
}
.container.active .card.alt .title,
.container.active .card.alt .input-container,
.container.active .card.alt .button-container {
	left: 0;
	opacity: 1;
	visibility: visible;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.container.active .card.alt .title {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
}
.container.active .card.alt .input-container {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}
.container.active .card.alt .input-container:nth-child(2) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}
.container.active .card.alt .input-container:nth-child(3) {
	-webkit-transition-delay: .6s;
	transition-delay: .6s;
}
.container.active .card.alt .button-container {
	-webkit-transition-delay: .7s;
	transition-delay: .7s;
}
/* Card */

.card {
	position: relative;
	background: #ffffff;
	padding: 0px 0 5px 0;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-transition: .3s ease;
	transition: .3s ease;
	border-bottom: solid 3px #004892;
	/* Title */
	/* Inputs */
	/* Button */
	/* Footer */
	/* Alt Card */
}
.forgot p {
	text-align: center;
	font-size: 13px;
}
.card:first-child {} .title {
	background-color: #004994;
	padding: 15px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
.card .input-container {
	position: relative;
	margin: 0 30px 15px;
}
.card .input-container input {
	outline: none;
	z-index: 1;
	position: relative;
	background: none;
	width: 100%;
	height: 35px;
	border: 0;
	color: #000;
	font-size: 18px;
	font-weight: 400;
        
}
.card .input-container input:focus ~ label {
	color: #9d9d9d;
	-webkit-transform: translate(-12%, -50%) scale(0.75);
	transform: translate(-12%, -50%) scale(0.75);
}
.card .input-container input:focus ~ .bar:before,
.card .input-container input:focus ~ .bar:after {
	width: 50%;
}
.card .input-container input:valid ~ label {
	color: #9d9d9d;
	-webkit-transform: translate(-12%, -50%) scale(0.75);
	transform: translate(-12%, -50%) scale(0.75);
}
.card .input-container label {
	position: absolute;
	top: 0;
	left: 0;
	color: #757575;
	font-size: 16px;
	font-weight: 300;
	line-height: 45px;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
.card .input-container .bar {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #ddd;
	width: 100%;
	height: 1px;
}
.card .input-container .bar:before,
.card .input-container .bar:after {
	content: '';
	position: absolute;
	background: #c53d3d;
	width: 0;
	height: 1px;
	-webkit-transition: .2s ease;
	transition: .2s ease;
}
.card .input-container .bar:before {
	left: 50%;
}
.card .input-container .bar:after {
	right: 50%;
}
.card .button-container {
	margin: 20px 30px 10px;
	text-align: center;
}
.card .button-container button {
	outline: 0;
	cursor: pointer;
	position: relative;
	display: inline-block;
	background: 0;
	border: 1px solid #ccc;
	background-color: #025AB3;
	padding: 15px 30px;
	font-size: 18px;

	line-height: 1;
	overflow: hidden;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.card .button-container button span {
	position: relative;
	z-index: 1;
	color: #ddd;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.card .button-container button:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background: #ed2553;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	margin: -15px 0 0 -15px;
	opacity: 0;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.card .button-container button:hover,
.card .button-container button:active,
.card .button-container button:focus {
	border-color: #ed2553;
}
.card .button-container button:hover span,
.card .button-container button:active span,
.card .button-container button:focus span {
	color: #fff;
}
.card .button-container button:active span,
.card .button-container button:focus span {
	color: #ffffff;
}
.card .button-container button:active:before,
.card .button-container button:focus:before {
	opacity: 1;
	-webkit-transform: scale(10);
	transform: scale(10);
}
.card .footer {
	margin: 40px 0 0;
	color: #d3d3d3;
	font-size: 24px;
	font-weight: 300;
	text-align: center;
}
.card .footer a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.card .footer a:hover {
	color: #bababa;
}
.card.alt {
	position: absolute;
	top: 40px;
	right: -70px;
	z-index: 10;
	width: 140px;
	height: 140px;
	background: none;
	border-radius: 100%;
	box-shadow: none;
	padding: 0;
	-webkit-transition: .3s ease;
	transition: .3s ease;
	/* Toggle */
	/* Title */
	/* Input */
	/* Button */
}
.card.alt .toggle {
	position: relative;
	background: #ed2553;
	width: 140px;
	height: 140px;
	border-radius: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	color: #ffffff;
	font-size: 58px;
	line-height: 140px;
	text-align: center;
	cursor: pointer;
}
.card.alt .toggle:before {
	content: '\f040';
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.card.alt .title,
.card.alt .input-container,
.card.alt .button-container {
	left: 100px;
	opacity: 0;
	visibility: hidden;
}
.card.alt .title {
	position: relative;
	border-color: #ffffff;
	color: #ffffff;
}
.card.alt .title .close {
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 60px;
	display: inline;
	color: #ffffff;
	font-size: 58px;
	font-weight: 400;
}
.card.alt .title .close:before {
	content: '\00d7';
}
.card.alt .input-container input {
	color: #ffffff;
}
.card.alt .input-container input:focus ~ label {
	color: #ffffff;
}
.card.alt .input-container input:focus ~ .bar:before,
.card.alt .input-container input:focus ~ .bar:after {
	background: #ffffff;
}
.card.alt .input-container input:valid ~ label {
	color: #ffffff;
}
.card.alt .input-container label {
	color: rgba(255, 255, 255, 0.8);
}
.card.alt .input-container .bar {
	background: rgba(255, 255, 255, 0.8);
}
.card.alt .button-container button {
	width: 100%;
	background: #ffffff;
	border-color: #ffffff;
}
.card.alt .button-container button span {
	color: #ed2553;
}
.card.alt .button-container button:hover {
	background: rgba(255, 255, 255, 0.9);
}
.card.alt .button-container button:active:before,
.card.alt .button-container button:focus:before {
	display: none;
}
/* Keyframes */

@-webkit-keyframes buttonFadeInUp {
	0% {
		bottom: 30px;
		opacity: 0;
	}
}
@keyframes buttonFadeInUp {
	0% {
		bottom: 30px;
		opacity: 0;
	}
}
h1 {
	font-size: 26px;
	color: #fff;
	text-transform: uppercase;
}
.login {
	position: relative;
	margin: 0 auto;
	padding: 20px 20px 20px;
	width: 310px;
	background: white;
	border-radius: 3px 3px 0 0;
	-webkit-box-shadow: 0 0 200px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 200px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.login1 {
	position: relative;
	margin: 0 auto;
	padding: 5px 20px;
	width: 310px;
	border-radius: 0 0 3px 3px;
	-webkit-box-shadow: 0 0 200px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 200px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
	font-size: 13px;
}
.login:before {
	content: '';
	position: absolute;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
	z-index: -1;
	background: white;
	border-radius: 4px;
}
.login h1 {
	margin: -20px -20px 21px;
	line-height: 40px;
	font-size: 15px;
	font-weight: bold;
	color: #555;
	text-align: center;
	text-shadow: 0 1px white;
	background: white;
	border-radius: 3px 3px 0 0;
}
.login p {
	margin: 20px 0 0;
}
.login p:first-child {
	margin-top: 0;
}
.login input[type=text],
.login input[type=password] {
	width: 278px;
}
.login p.remember_me {
	float: left;
	line-height: 31px;
}
.login p.remember_me label {
	font-size: 12px;
	color: #777;
	cursor: pointer;
}
.login p.remember_me input {
	position: relative;
	bottom: 1px;
	margin-right: 4px;
	vertical-align: middle;
}
.login p.submit {
	text-align: right;
}
.login-help {
	margin: 20px 0;
	font-size: 11px;
	color: white;
	text-align: center;
	text-shadow: 0 1px #2a85a1;
}
.login1 a {
	color: #cce7fa;
	text-decoration: none;
}
.login1 a:hover {
	text-decoration: underline;
}
.login1 p {
	color: #05233d;
}
:-moz-placeholder {
	color: #c9c9c9 !important;
	font-size: 13px;
}
::-webkit-input-placeholder {
	color: #ccc;
	font-size: 13px;
}
input {
	font-family: 'Lucida Grande', Tahoma, Verdana, sans-serif;
	font-size: 14px;
}
input[type=text],
input[type=password] {/*
	margin: 0 5px;
	padding: 0 10px;
	width: 200px;
	height: 50px;
	color: #404040;
	background: white;
	border: 1px solid;
	border-color: #c4c4c4 #d1d1d1 #d4d4d4;
	border-radius: 2px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12)*/
}
input[type=text]:focus,
input[type=password]:focus {
	border-color: #7dc9e2;
	outline-color: #dceefc;
	outline-offset: 0;
}
.btn-submit {
	padding: 0;
	width: 100%;
	margin: 0 auto;
	height: 40px;
	font-size: 12px;
	font-weight: bold;
	color: #527881;
	text-shadow: 0 1px #e3f1f1;
	background: #cde5ef;
	border: 1px solid;
	border-color: #b4ccce #b3c0c8 #9eb9c2;
	border-radius: 16px;
	outline: 0;
	background-image: -webkit-linear-gradient(top, #edf5f8, #cde5ef);
	background-image: -moz-linear-gradient(top, #edf5f8, #cde5ef);
	background-image: -o-linear-gradient(top, #edf5f8, #cde5ef);
	background-image: linear-gradient(to bottom, #edf5f8, #cde5ef);
	-webkit-box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
	box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.15);
}
.btn-submit:active {
	background: #cde5ef;
	border-color: #9eb9c2 #b3c0c8 #b4ccce;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.btn-submit:hover {
	cursor: pointer;
}
.lt-ie9 input[type=text],
.lt-ie9 input[type=password] {
	line-height: 34px;
}
.wrapper {} .head {
	width: 100%;
	padding: 3%;
}
.identity {
	display: none;
}
.alert {
	padding: 8px;
	margin-bottom: 20px;
	border: 1px solid transparent;
}
.alert h4 {
	margin-top: 0;
	color: inherit;
}
.alert .alert-link {
	font-weight: bold;
}
.alert > p,
.alert > ul {
	margin-bottom: 0;
}
.alert > p + p {
	margin-top: 5px;
}
.alert-dismissable {
	padding-right: 35px;
}
.alert-dismissable .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit;
}
.alert-success {
	color: #468847;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}
.alert-success hr {
	border-top-color: #c9e2b3;
}
.alert-success .alert-link {
	color: #356635;
}
.alert-info {
	color: #3a87ad;
	background-color: #d9edf7;
	border-color: #bce8f1;
}
.alert-info hr {
	border-top-color: #a6e1ec;
}
.alert-info .alert-link {
	color: #2d6987;
}
.alert-warning {
	color: #c09853;
	background-color: #fcf8e3;
	border-color: #faebcc;
}
.alert-warning hr {
	border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
	color: #a47e3c;
}
.alert-danger {
	color: #b94a48;
	background-color: #f2dede;
	border-color: #ebccd1;
	font-size: 13px;
	margin-top: 10px;
}
.alert-danger hr {
	border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
	color: #953b39;
}
.close {
	background: #F00;
	border-radius: 50%;
	color: #fff;
	width: 20px;
	height: 20px;
	float: right;
	border: 0;
}
.captcha-row p {
	padding-bottom: 10px;
}
.captcha-code img {
	height: 60px;
}
.captcha-row {
	text-align: center;
	font-size: 13px;
	color: #555;
}
.school-logo-box {
	
	border-bottom: solid thin #eee;
	margin-bottom: 20px;
}
.school-logo-sub-box {
	width: 170px;
	height:120px;
	margin-bottom: 20px;
	
	margin: 0 auto;
	overflow: hidden;
	 
      
}
.school-logo-sub-box img {
	width: 100%;
}
@media (max-width: 1200px) {
	.title {
		padding: 8px;
		font-size: 14px;
	}
	.school-logo-box {
		margin-bottom: 10px;
	}
	.card .button-container button {
		padding: 10px 40px;
		font-size: 15px;
	}
	.school-logo-sub-box {
		width:160px;
		height:90px;
		margin-bottom: 5px;
	}
	.card .button-container {
		margin: 15px 30px 10px;
		text-align: center;
	}
	.card .input-container input {
		font-size: 15px;
	}
	.card .input-container {
		margin: 0 30px 10px;
	}
}
@media (max-width: 768px) {
	.head {
		width: 250px;
		margin: 0 auto;
	}
	.head img {
		width: 100%;
	}
	.wrapper {
		margin-bottom: 20px;
	}
	.forgot p {
		font-size: 11px;
	}
	.title {
		padding: 15px;
		font-size: 18px;
	}
	.card .input-container {
		margin: 0 30px 15px;
	}
	.card .input-container input {
		font-size: 18px;
	}
	.card .button-container {
		margin: 20px 30px 10px;
		text-align: center;
	}
	.school-logo-box {
		margin-bottom: 20px;
	}
	.school-logo-sub-box {
	width: 170px;
	height:100px;
		margin-bottom: 5px;
	}
	.card .button-container button {
		padding: 15px 40px;
		font-size: 18px;
	}
}

.captcha-code input{text-align:center!important;}