body{
  background-color:#ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color:#000000;


}
html {
  scroll-behavior: smooth;
}

.login-bg{
  background-image: url(../images/login_bg.jpg);
  position: relative;
  background-size: cover;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}
.layer {
    background-color: rgba(30, 31, 103, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.first-sec .logo{
  margin:auto;
  margin-top: 10px;
  display: table;
}
.first-sec h3 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  font-size: 30px;
  margin-top: 10px;
  position: relative;
}
.first-sec h3:before{
  content: "";
  position: absolute;
  background-color:#f6821f; 
  width: 30px;
  height: 3px;
  top: 5px;
  top: 17px;
  left: 72px;
}
.first-sec h3:after{
  content: "";
  position: absolute;
  background-color:#f6821f; 
  width: 30px;
  height: 3px;
  top: 5px;
  top: 17px;
  right: 72px;
  
}
.first-sec h4 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #ffffff;
  font-weight: 200;
  font-size: 22px;
  margin-top: 10px;
  position: relative;
}
.first-sec h4:before {
  position:absolute;
  content: "";
  background-color:#ffffff;  
  width: 37%;
  height: 3px;
  left: 31.5%;
  bottom: -7px;
}
.first-sec h5 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #ffffff;
  font-weight:200;
  font-size: 14px;
  margin-top: 10px;
  position: relative;
  background-color:#f6821f; 
  padding: 2px 50px 2px 50px;
  display: inline;
  margin:auto;
  display: table;
}
.first-sec .text-icon-wrp{
  margin: auto;
  margin-top: 16%;
}
.first-sec .text-icon-wrp .admin-icn{
  margin:auto;
  display: table;
}
.first-sec .text-icon-wrp h1{
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #f6821f;
  font-weight: 900;
  font-size: 56px;
  margin: auto;

}
.round-shape{
  width:150vh;
  height:150vh;
  border-radius: 100%;
  background-color:rgba(8,75,156,0.9);
  position: relative;
  top: -150px;
  z-index:999;
  
  box-shadow: inset 5px 5px 10px #060152,
            inset -5px -5px 10px #08016e

}

.round-shape::before {
    position: absolute;
    content: "";
    width:152vh;
    height:152vh;
    border-radius: 50%;
    background-color:rgba(8,75,156,0.7);
    right: 3vh;
    top: 0vh;
    opacity: 0.3;
    
box-shadow: inset 5px 5px 10px #060152,
            inset -5px -5px 10px #08016e

}


/****************
      FORM
*****************/
button,
input {
  border: none;
  outline: none;
}

.signup {
  background-color:transparent;
  width: 100%;
  max-width: 500px;
  padding: 50px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: 28%;
  left: 9%;
}

.signup h1 {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #f6821f;
  font-weight: 700;
  font-size: 36px;
}
.signup h2 {
   font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  padding-bottom: 30px;
}

.signup h2 span {
  font-family: 'Poppins', sans-serif;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  color: #f6821f;

}

/*  Field */
.signup .signup__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.signup .signup__field:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0px;
  height: 2px;
  background: #a4243b;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.signup .signup__field:hover:before {
  width: 100%;
}

/*  Input */
.signup .signup__input {
   font-family: 'Poppins', sans-serif;
   font-style: 12px !important;
  color: #bdbdbd;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  padding: 10px 2px 0;
  border-bottom: 2px solid #e0e0e0;
  background-color: transparent;
}

/*  Label */
.signup .signup__label {
  color: #bdbdbd;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.signup .signup__input:focus + .signup__label,
.signup .signup__input:valid + .signup__label {
  top: 0;
  font-size: 1rem;
  background-color: white;
}

/*  Button */
.signup button {
  background:#f6821f;
  color: white;
  padding: 12px 0;
  font-size: 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition:  0.5s;

}

.signup button:hover {
  background: #ffffff;
  color: #000000;
}

.signup a{
   font-family: 'Poppins', sans-serif;
   font-style: 12px !important;
   color: #ffc107;
   margin-top: -20px;
   font-weight: 400;
}
.signup a:hover{
   font-family: 'Poppins', sans-serif;
   font-style: 12px !important;
   color: #ffffff;
}
 /*social media*/
 .social-cvr{
  position: relative; 
  left:33%;
  top: 20px;
  z-index: 99;
 }
 .contact-social-media-container
        {
            height:52px;
            margin:15px 0 ;

        }
        .contact-details-head
        {
            margin:10px 0;
            font-weight:bold;
            color: #0d2033;
        }
        .contact-details-separator
        {
            background-image: linear-gradient(to right, transparent, #DBDBDB, transparent);
            border: 0;
            height: 1px;
            margin: 22px 0;
        }
        .contact-social-media-icon
        {
            display: inline-block;
            float: left;
            margin-right:20px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            text-align: center;
            background: #fff;
            line-height:50px;
            transition:all .2s ease-in-out ;
            text-decoration: none;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .contact-social-media-icon:hover {
            color: #fff;
        }
        .contact-social-media-icon:hover .fa {
            animation: mediaMove .6s linear 0s 1 normal forwards running ;
        }
        @keyframes mediaMove {
            from {
                bottom:100%;

            }
            to  {
                bottom:16%;
                transform: scale(1.1);
            }
        }
        .contact-social-media-icon .fa
        {
            font-size:20px;
            margin-top:10px;
            margin-right:3px;
            position: absolute;
            left:11px;
        }
        /*facebook*/
        .contact-social-media-icon .fa-facebook {
            left:15px !important
        }
        .contact-social-media-icon.fb{
            background: #607AB2;
        }
        /*twitter */
        .contact-social-media-icon.tw
        {
            background: #6ABFE8;
        }
        /*youtube*/
        .contact-social-media-icon.yt
        {
            background: #D6464B;
        }
        /*instagram*/
        .contact-social-media-icon.ins
        {
            background: linear-gradient(purple,red, yellow);
            margin-right: 0;
        }

 /*social media*/
  /*bg animation*/
 .background-shapes {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 2000px;
  background-size: 100%;
  animation: 120s infiniteScroll linear infinite;
  background-repeat-x: repeat;
  background-image: url(https://cdn2.hubspot.net/hubfs/53/Pricing%202017%20Assets/marketing/Header_Circles-1.svg);
}

@-webkit-keyframes infiniteScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -1692px, 0);
    transform: translate3d(0, -1692px, 0);
  }
}

@keyframes infiniteScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -1692px, 0);
    transform: translate3d(0, -1692px, 0);
  }
}
  /*bg animation*/
 /*Login page*/
  .login_sec{
   position: relative;

  }

  .login_sec h3{
   font-family: 'Edu SA Beginner', cursive;
   font-size:46px ;
   color: #2d29d9;
    text-align: center;
    font-weight: 700;
    text-shadow: 1px 1px 0 #ff9494, 2px 2px 0 black;

  }
  .login_sec h1{
   font-family: 'Poppins', sans-serif;
   font-size:50px ;
   color: #03007e;
   font-weight:700; 
   text-align: center;

  }
  .login_sec h5{
   font-family: 'Poppins', sans-serif;
   font-size:28px;
   color: #03007e;
   font-weight:500; 
   text-align: center;

  }
  .login_sec h6{
   font-family: 'Poppins', sans-serif;
   font-size:18px ;
   color: #3b86ea;
   font-weight:500; 
   text-align: center;

  }






.login-content{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.img img{
  width: 500px;
}



.login-content img{
    height: 100px;
}

.login-content h2{
  margin: 15px 0;
  color: #333;
  text-transform: uppercase;
  font-size: 2.9rem;
}

.login-content .input-div{
  position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one{
  margin-top: 0;
}

.i{
  color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.i i{
  transition: .3s;
}

.input-div > div{
    position: relative;
  height: 45px;
}

.input-div > div > h5{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  transition: .3s;
}

.input-div:before, .input-div:after{
  content: '';
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #38d39f;
  transition: .4s;
}

.input-div:before{
  right: 50%;
}

.input-div:after{
  left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
  width: 50%;
}

.input-div.focus > div > h5{
  top: -5px;
  font-size: 15px;
}

.input-div.focus > .i > i{
  color: #38d39f;
}

.input-div > div > input{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 14px;
  color: #eeeeee;
  font-family: 'poppins', sans-serif;
}

.input-div.pass{
  margin-bottom: 4px;
}

a{
  display: block;
  text-align: right;
  text-decoration: none;
  color: #999;
  font-size: 0.9rem;
  transition: .3s;
}

a:hover{
  color: #38d39f;
}



@media screen and (max-width: 1050px){
  .container{
    grid-gap: 5rem;
  }
}

@media screen and (max-width: 1000px){
  

  .login-content h2{
        font-size: 2.4rem;
        margin: 8px 0;
  }

  .img img{
    width: 400px;
  }
}

@media screen and (max-width: 900px){
  .container{
    grid-template-columns: 1fr;
  }

  .img{
    display: none;
  }

  .wave{
    display: none;
  }

  .login-content{
    justify-content: center;
  }
}

.login-wrp-bg h2{
   font-family: 'Poppins', sans-serif;
   font-size:32px ;
   color: #ffffff;
   font-weight:700; 
   text-align: center;
}

.login-wrp-bg .login-btn{
 background-color:#ff9000;
 width: 100%;
 height: 50px;
 border-radius: 25px;
 font-family: 'Poppins', sans-serif;
 font-size:16px ;
 color: #ffffff;
 font-weight:500; 
 box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease 0s;
 cursor: pointer;
  outline: none;
}
.login-wrp-bg .login-btn:hover{
 background-color:#0ae010;
 box-shadow: 0px 15px 20px rgba(10, 224, 16, 0.4);
 color: #fff;
 transform: translateY(-3px);
}
.login-wrp-bg  a {
    color: #ffffff;
    text-decoration: underline;
}
.login-wrp-bg  a:hover {
    color:#0ae010;
}
.login-wrp-bg{
  width:100%;
  border-radius: 35px 150px;
  background-color: #03007e;
  padding:80px;
  background-image: linear-gradient(rgba(3, 0, 126, 0.9), rgba(3, 0, 126, 0.9)), url(../images/app_bg.png);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  position: relative;
}
.login-wrp-bg:before{
  border-radius: 40px 100px;
  content: "";
  background-color:rgba(255,144,0.3);
  position: absolute;
  width: 102%;
  height: 102%;
  left: -5px;
  top: -5px;
  z-index: -1;
 
}
.login-wrp-bg input:-webkit-autofill,
.login-wrp-bg input:-webkit-autofill:hover,
.login-wrp-bg input:-webkit-autofill:focus,
.login-wrp-bg textarea:-webkit-autofill,
.login-wrp-bg textarea:-webkit-autofill:hover,
.login-wrp-bg textarea:-webkit-autofill:focus,
.login-wrp-bg select:-webkit-autofill,
.login-wrp-bg select:-webkit-autofill:hover,
.login-wrp-bg select:-webkit-autofill:focus {
        -webkit-text-fill-color: white;
        -webkit-box-shadow: 0 0 0px 1000px none inset;
        transition: background-color 5000s ease-in-out 0s;
}

.reg_btn{
  font-family: 'Poppins', sans-serif;
  font-size:14px ;
  color: #ffffff;
  font-weight:400; 
  background-color:#ff9000 ;
  padding: 8px 70px 8px 70px;
  text-align: center;
  border-radius: 50px;
  display: inline;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}
.reg_btn:hover{
  background-color:#0ae010;
  box-shadow: 0px 15px 20px rgba(10, 224, 16, 0.4);
  color: #fff;
  transform: translateY(-3px);
}

a.reg_btn{
  color: #ffffff;
  text-decoration: none;

}
   /*Login page*/
.grn-box, .red-box, .blue-box, .org-box {
    border-radius: 8px;
    /*width: 50px;
    height: 45px;*/
    width: 40px;
    height: 36px;
    margin: 3px 2px 2px 5px;
    display: inline;
    float: left;
    box-shadow: 1px 1px 0px #999, 2px 2px 0px #999, 3px 3px 0px #999, 4px 4px 0px #999;
    /*5px 5px 0px #999,
                6px 6px 0px #999;*/
}
   .blue-box{
    background-color:#0b2f7f;
   
   }
   .blue-box i{
    font-size: 22px;
    color: #ffffff;
   }
   .red-box{
    background-color:#dc3545;
   
   }


   .red-box i{
    font-size:28px;
    color: #ffffff;
   }
    .org-box{
    background-color:#f6821f;
   
   }


   .org-box i{
    font-size:28px;
    color: #ffffff;
   }

    .grn-box{
    background-color:#28a745;
    
   }

   .grn-box i{
    font-size:28px;
    color: #ffffff;
   }

  .input--style-4 {
    line-height: 38px;
    background: #fafafa;
    -webkit-box-shadow: inset 0 1px 3px 0 rgb(0 0 0 / 8%);
    -moz-box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.08);
    box-shadow: inset 0 1px 3px 0 rgb(0 0 0 / 8%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 5px;
    font-size: 14px;
    color: #666;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}



/*  career*/
.career-hide{
    display:none;
}
.career-add{
    height:94px !important;
}
/* Table Header Style */
.reference-table thead,
.experience-table thead,
.child-details-table thead {
    background: #d9dde3;
    font-weight: 600;
    text-transform: uppercase;
}

/* Table Body Style */
..reference-table td,
.experience-table td,
.child-details-table td {
    background: #eef1f5;
}
.reference-table thead tr th:last-child,
.experience-table thead tr th:last-child,
.child-details-table thead tr th:last-child {
    text-align: center !important;
}
/* Delete Icon Style */
.child-details-delete-link {
    color: #ff0000;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}
#child-details-tbody tr td a {
    text-align: center !important;
}

.child-details-delete-link:hover {
    color: #cc0000;
}

/* Optional small input style */
.child-details-form .form-control,
.child-details-form .form-select {
    font-size: 14px;
}
.teach_choice .form-check .form-check-input {
    float: right;
    margin-right: -4px;
    }
