@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');



.landing__bg {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    /* background-image: url(../../../assets/images/landing_right_bg.png), url(../../../assets/images/landing_left_bg.png); */
    background-image: url(../../../assets/images/school_corner_righthd.png), url(../../../assets/images/school_corner_lefthd.png);
    background-size: 40%, 25%;
    background-repeat: no-repeat;
    background-position: top right, bottom left;
}
.landing__bg .logo {
    margin-top: 20px;
    margin-bottom: 15px;;

}
.landing__bg .logo img {
    width: 80%;
}

/* .wrap-landing:hover .box-landing:not(:hover) {
    filter: blur(3px);
    opacity: 0.5;
} */

.box-landing {
    width: 100%;
    float: left;
    background-color: var(--light);
    border-radius: 10px;
    text-align: center;
    min-height: 320px;
    border: solid 1px #ddd;
    -webkit-transition: .3s cubic-bezier(.175,.885,.32,2);
    -o-transition: .3s cubic-bezier(.175,.885,.32,2);
    transition: .3s cubic-bezier(.175,.885,.32,2);
    margin-top: 15px;
}
.box-landing:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    box-shadow: hsl(0deg 0% 70%) 0 0 16px;
    border: solid 0px #ddd;
}
.box-landing a {
    color: #333;
    text-decoration: none;
}
.box-landing img {
    max-width: 70%;
}
.box-landing h2 {
    padding: 10px 0px;
    font-weight: 700;
    font-size: 22px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 10px 23px rgb(51 51 51 / 15%);
}
.arrow-link {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: solid 2px #cfe195;
    clear: both;
    border-radius: 50px;
    display: block;
    margin: 15px auto;
    position: relative;
}
.arrow-link::before {
    margin-left: 15px;
    border: solid #333;
    border-width: 0 2px 2px 0!important;
    display: inline-block;
    padding: 5px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(
-45deg
);
    -webkit-transform: rotate(
-45deg
);
    content: "";
    position: relative;
    top: 7px;
    right: 9px;

}


body {
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
}

.form-control.admin_input.error {
   font-size: 20px !important;
   text-align: left;
   color: #444;
}
.error {
    position: absolute;
    top: 100%;
    font-size: 15px !important;
    color: red;
    display: inline-block;
    text-align: right;
}


.login-mess-icon {
    position: absolute;
    left: 360px;
    top: 103px;
    z-index: 2;
    -webkit-animation: blinker-move 3s infinite alternate;
    animation: blinker-move 3s infinite alternate;
}
.login-mess-icon img {
    max-width: 72%;
}

@-webkit-keyframes blinker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30px); }
}

@keyframes blinker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30px); }
}

.login-mess-icon span {
    animation: blinker 1s linear infinite;
    position: absolute;
    top: 0;
    z-index: 8;
}

.login-mess-icon span img {
    max-width: 48px;
    position: relative;
    top: 31px;
    left: -63px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.login-search-icon {
    position: absolute;
    right: 210px;
    bottom: 30px;
    z-index: 2;
    max-width: 25%;
    -webkit-animation: search-vector 4s infinite  alternate;
    animation: search-vector 4s infinite  alternate;
}

@-webkit-keyframes search-vector {
    0% { transform: translateY(0); }
    100% { transform: translateY(-25px); }
}

@keyframes search-vector {
    0% { transform: translateY(0); }
    100% { transform: translateY(-25px); }
}

.balloons img {
	width: 100%;
}
.balloons {
    position: absolute;
    right: 195px;
    max-width: 70px;
	top: 230px;
	animation: mymove 2s infinite;
}

@keyframes mymove {
	0% { transform: translateY(0); }
	100% { transform: translateY(-150px); }
	
  }

  .User_login {
      display: block;
      text-align: center;
      margin-bottom: 10px;
  }

.User_login img {
    max-width: 60px;
}
  

.title_bike {
    position: absolute;
    left: 450px;
	bottom: 135px;
	animation: bike 5s infinite;
}

.title_bike .bike1 {
	max-width: 100%;
	display: block;
}

.title_bike .bike2 {
    max-width: 100%;
    position: absolute;
	left: -12px;
	top: 58px;
	-webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(-360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(-360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }

.title_bike .bike3 {
    max-width: 100%;
    position: absolute;
    right: 1px;
	top: 58px;
	-webkit-animation:spin2 4s linear infinite;
    -moz-animation:spin2 4s linear infinite;
    animation:spin2 4s linear infinite;
}


@-moz-keyframes spin2 { 100% { -moz-transform: rotate(-360deg); } }
@-webkit-keyframes spin2 { 100% { -webkit-transform: rotate(-360deg); } }
@keyframes spin2 { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }


.teachter-boys img {
	width: 100%;
	
}
.teachter-boys {
    position: absolute;
    right: 195px;
    max-width: 143px;
	top: 230px;
	animation: teachter-boys 2s infinite;
}

@keyframes teachter-boys {
	from { transform: translateY(0); }
    to { transform: translateY(-150px); }
  }

  .teachter-girls img {
	width: 100%;
	
}
.teachter-girls {
    position: absolute;
    right: 0px;
    max-width: 143px;
	top: 230px;
	animation: teachter-girls 7s forwards;
	animation-duration: 0.7s;
	animation-delay: 2s;
	
}

@keyframes teachter-girls {
	from { transform: translateX(0);}
    to { 
		transform: translateX(112px);
		
	}
  }


  .teachter-boys img {
	width: 100%;
	
}
.teachter-boys {
    position: absolute;
    right: 0px;
    max-width: 143px;
    top: 96px;
    animation: teachter-boys 7s forwards;
    animation-duration: 0.7s;
    animation-delay: 3s;
   
}
@keyframes teachter-boys {
	from { transform: translateX(0); }
    to { 
		transform: translateX(118px);
		
	}
  }

h5.login_left_title {
    position: absolute;
    z-index: 7;
    top: 230px;
    left: 140px;
    color: #fff;
    transform: rotate(-30deg);
    font-size: 30px;
    font-family: 'Nerko One', cursive;
}

.admin_section {
    width: 100%;
    float: left;
	position: relative;
	background-color: #fff;
	height: 100vh;
	overflow: hidden;
}

.school_ {
    position: absolute;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #fff;
    top: -30px;
    z-index: 9;
    margin: auto;
	border-radius: 50%;
	border: 2px dashed #9e9aff;
}

.Students {
	max-width: 100%;
	display: none;
}
.Teachers {
	max-width: 100%;
	display: none;
}
.Parents {
	max-width: 100%;
	display: none;
}
.intro .Students{
	display: block;
}
.intro .Teachers{
	display: block;
}
.intro .Parents{
	display: block;
}

.intro .Students {
	position: absolute;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #fff;
    top: -30px;
    z-index: 9;
    margin: auto;
	border-radius: 50%;
	border: 2px dashed #9e9aff;
	display: block;
}

.intro .Teachers {
	position: absolute;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #fff;
    top: -30px;
    z-index: 9;
    margin: auto;
	border-radius: 50%;
	border: 2px dashed #9e9aff;
	display: block;
}


.intro .Parents {
	position: absolute;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #fff;
    top: -30px;
    z-index: 9;
    margin: auto;
	border-radius: 50%;
	border: 2px dashed #9e9aff;
	display: block;
}

.admin_header {
	margin-top:110px;
	float:left;
	margin-left:10px;
	position:relative;
	z-index:2;
}
.logo_admin {
	float:left;
	width:100%;
}

.logo_admin a {
	display:block;
}
.admin_header h1 {
    float: left;
    padding: 0;
    margin: 190px 0 0 130px;
    color: #c7d2dc;
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    box-sizing: border-box;
}

.Teachter-vector {
    position: absolute;
    left: 0px;
	top: 35px;
	animation: teachter-oid 7s forwards;
    animation-duration: 0.7s;
    animation-delay: 1s;
}

@keyframes teachter-oid {
	from { transform: translateX(0);}
    to { 
		transform: translateX(-180px);
	}
  }

.admin_title {
    color: #3867b3;
  }


.login_inner {
	width:100%;
	float:left;
}

.Login__left_picture {
	position: relative;
	z-index: 6;
	max-width: 85%;
	margin-top: 20px;
	margin-left: 0px;
}

 .Login__left::after {
	content: '';
	height: 121%;
    width: 100%;
    top: -100px;
    left: -90px;
	position: absolute;
    background: linear-gradient(to right, rgb(255 255 255), rgb(236 236 236));
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	z-index: 1;
	border-radius: 0px 0px 100px 0px;
	transform: rotate(-6deg);
    opacity: 0.98;
    animation: gradient 15s ease infinite;
}

.Login__right {
	height:100vh;
	background-color: #fff;
	display: flex;
    justify-content: center;
    align-items: center;
}

.user-icon {
    text-align: center;
}

.kids__form {
    width: 100%;
    float: left;
	border-radius: 20px;
    padding: 0px 70px 0px 10px;
	font-family: 'Nerko One', cursive;
	background-size: cover;
	background-repeat: no-repeat;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;	
}

.kids__form.teachers {
	border: solid 10px #d49450;
}

.kids__form.teachers::after {
	background-color: #4a7a6a;
	border-radius: 10px;
	-moz-box-shadow:inset 0 0 10px #164636;
   -webkit-box-shadow: inset 0 0 10px #164636;
   box-shadow: inset 0 0 10px #164636;
}


.form__relative {
	position: relative;
	z-index: 2;
}

.kids__form h2 {
	text-align: center;
	margin-bottom: 10px;
}

.login_inner > h2 {
    padding: 20px 25px;
    margin: 0;
    width: 100%;
    float: left;
    background: #e9ecef;
    border-radius: 5px 5px 0px 0px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #2271a0;
}

.admin_form .input-group label {
	width:100%;
	font-size: 20px;
}
.admin_input {
	height:48px;
	font-size: 20px;
	border-radius: 25px;
	border: none;
	box-shadow: 8px 8px 30px 0 rgba(41.999999999999986,67.00000000000004,113,.15);
	border: solid 1px #d6d6d6;    
}
.input_icons {
	padding:0px;
	min-width:60px;
	border-radius: 25px 0px 0px 25px !important;
}
.input_icons i {
	width:100%;
	text-align:center;
}
.submit_admin_btn {
	width:100%;
	float:left;
	background: #fbb030;
    border: none;
    outline: none;
    padding: 5px 0px;
    font-size: 28px;
    text-transform: uppercase;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0px 4px 0px #d38500;
    text-shadow: 1px 1px 0px #b77e1c;
    font-weight: normal;
    cursor: pointer;
	margin-top:30px;
	transition: 0.3s;
	border-radius: 25px;
}
.submit_admin_btn:hover {
    background: #eca223;
    box-shadow: 0px 5px 0px #c57f06;
    transition: 0.3s;
}
.submit_admin {
	width:100%;
	float:left;
	margin-top:25px;
}

/*end*/ 