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*/
  
  /*deatils page */
 .side-profile-bar {
    background: #0b2f7f;
    border-bottom: 1px solid #0e47a2;
    padding: 30px 0px 0px 0px;
    position: sticky;
    top: 10px;
    margin-bottom: 10px;
}
.side-profile-bar h5{
  font-size:18px;
  color:#ffffff;
}
.line {
    border-top: 1.5px solid #fff;
    width: 70px;
    text-align: center;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 20px;
}
.lines {
    border-top: 3px solid #2fc433;
    height: 5px;
    width: 70px;
    margin: 0px;
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 20%;
}
.brd-btm {
    border-bottom: 0.7px solid #dddddd;
}
.detail-sec .table-borderless th, .table-borderless td, .table-borderless thead th, .table-borderless tbody + tbody {
   
    font-weight: 550;
    font-size: .9em;
}
.detail-sec .table > thead > tr > th{
  border-bottom:none;
  font-weight:700;
}
.detail-sec .table td, .table th{
  border-bottom:none;
 font-weight: normal;
 }

/*----------------------------------------------------------
--------------------- applicant-logon-css -------------------
------------------------------------------------------------*/

.lofty-login-register .text-0 {
    font-size: 11px !important;
    font-size: 0.6875rem !important;
}

.lofty-login-register .text-1 {
    font-size: 12px !important;
    font-size: 0.75rem !important;
}

.lofty-login-register .text-2 {
    font-size: 14px !important;
    font-size: 0.875rem !important;
}

.lofty-login-register .text-3 {
    font-size: 16px !important;
    font-size: 1rem !important;
}

.lofty-login-register .text-4 {
    font-size: 18px !important;
    font-size: 1.125rem !important;
}

.lofty-login-register .text-5 {
    font-size: 21px !important;
    font-size: 1.3125rem !important;
}

.lofty-login-register .text-6 {
    font-size: 24px !important;
    font-size: 1.50rem !important;
}

.lofty-login-register .text-7 {
    font-size: 28px !important;
    font-size: 1.75rem !important;
}

.lofty-login-register .text-8 {
    font-size: 32px !important;
    font-size: 2rem !important;
}

.lofty-login-register .text-9 {
    font-size: 36px !important;
    font-size: 2.25rem !important;
}

.lofty-login-register .text-10 {
    font-size: 40px !important;
    font-size: 2.50rem !important;
}

.lofty-login-register .text-11 {
    font-size: calc(1.4rem + 1.8vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-11 {
        font-size: 2.75rem !important;
    }
}

.lofty-login-register .text-12 {
    font-size: calc(1.425rem + 2.1vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-12 {
        font-size: 3rem !important;
    }
}

.lofty-login-register .text-13 {
    font-size: calc(1.45rem + 2.4vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-13 {
        font-size: 3.25rem !important;
    }
}

.lofty-login-register .text-14 {
    font-size: calc(1.475rem + 2.7vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-14 {
        font-size: 3.5rem !important;
    }
}

.lofty-login-register .text-15 {
    font-size: calc(1.5rem + 3vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-15 {
        font-size: 3.75rem !important;
    }
}

.lofty-login-register .text-16 {
    font-size: calc(1.525rem + 3.3vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-16 {
        font-size: 4rem !important;
    }
}

.lofty-login-register .text-17 {
    font-size: calc(1.575rem + 3.9vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-17 {
        font-size: 4.5rem !important;
    }
}

.lofty-login-register .text-18 {
    font-size: calc(1.625rem + 4.5vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-18 {
        font-size: 5rem !important;
    }
}

.lofty-login-register .text-19 {
    font-size: calc(1.65rem + 4.8vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-19 {
        font-size: 5.25rem !important;
    }
}

.lofty-login-register .text-20 {
    font-size: calc(1.7rem + 5.4vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-20 {
        font-size: 5.75rem !important;
    }
}

.lofty-login-register .text-21 {
    font-size: calc(1.775rem + 6.3vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-21 {
        font-size: 6.5rem !important;
    }
}

.lofty-login-register .text-22 {
    font-size: calc(1.825rem + 6.9vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-22 {
        font-size: 7rem !important;
    }
}

.lofty-login-register .text-23 {
    font-size: calc(1.9rem + 7.8vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-23 {
        font-size: 7.75rem !important;
    }
}

.lofty-login-register .text-24 {
    font-size: calc(1.95rem + 8.4vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-24 {
        font-size: 8.25rem !important;
    }
}

.lofty-login-register .text-25 {
    font-size: calc(2.025rem + 9.3vw) !important;
}

@media (min-width: 1200px) {
    .lofty-login-register .text-25 {
        font-size: 9rem !important;
    }
}

.lofty-login-register .text-11, .lofty-login-register .text-12, .lofty-login-register .text-13, .lofty-login-register .text-14, .lofty-login-register .text-15, .lofty-login-register .text-16, .lofty-login-register .text-17, .lofty-login-register .text-18, .lofty-login-register .text-19, .lofty-login-register .text-20, .lofty-login-register .text-21, .lofty-login-register .text-22, .lofty-login-register .text-23, .lofty-login-register .text-24, .lofty-login-register .text-25 {
    line-height: 1.3;
}

/* Font Weight */
.lofty-login-register .fw-100 {
    font-weight: 100 !important;
}

.lofty-login-register .fw-200 {
    font-weight: 200 !important;
}

.lofty-login-register .fw-300 {
    font-weight: 300 !important;
}

.lofty-login-register .fw-400 {
    font-weight: 400 !important;
}

.lofty-login-register .fw-500 {
    font-weight: 500 !important;
}

.lofty-login-register .fw-600 {
    font-weight: 600 !important;
}

.lofty-login-register .fw-700 {
    font-weight: 700 !important;
}

.lofty-login-register .fw-800 {
    font-weight: 800 !important;
}

.lofty-login-register .fw-900 {
    font-weight: 900 !important;
}

/* Opacity */
.lofty-login-register .opacity-0 {
    opacity: 0;
}

.lofty-login-register .opacity-1 {
    opacity: 0.1;
}

.lofty-login-register .opacity-2 {
    opacity: 0.2;
}

.lofty-login-register .opacity-3 {
    opacity: 0.3;
}

.lofty-login-register .opacity-4 {
    opacity: 0.4;
}

.lofty-login-register .opacity-5 {
    opacity: 0.5;
}

.lofty-login-register .opacity-6 {
    opacity: 0.6;
}

.lofty-login-register .opacity-7 {
    opacity: 0.7;
}

.lofty-login-register .opacity-8 {
    opacity: 0.8;
}

.lofty-login-register .opacity-9 {
    opacity: 0.9;
}

.lofty-login-register .opacity-10 {
    opacity: 1;
}

/* Background light */
.lofty-login-register .bg-light-1 {
    background-color: #e9ecef !important;
}

.lofty-login-register .bg-light-2 {
    background-color: #dee2e6 !important;
}

.lofty-login-register .bg-light-3 {
    background-color: #ced4da !important;
}

.lofty-login-register .bg-light-4 {
    background-color: #adb5bd !important;
}

/* Background Dark */
.lofty-login-register .bg-dark {
    background-color: #111418 !important;
}

.lofty-login-register .bg-dark-1 {
    background-color: #212529 !important;
}

.lofty-login-register .bg-dark-2 {
    background-color: #343a40 !important;
}

.lofty-login-register .bg-dark-3 {
    background-color: #495057 !important;
}

.lofty-login-register .bg-dark-4 {
    background-color: #6c757d !important;
}

.lofty-login-register hr {
    opacity: 0.2;
}

/* =================================== */
/*  3. Layouts
/* =================================== */
.lofty-login-register .section {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .lofty-login-register .section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .lofty-login-register .modal .close {
        position: absolute;
        z-index: 1;
        right: 8px;
    }
}

/* =================================== */
/*  4. Elements
/* =================================== */
/*=== 4.1 Hero Background ===*/
.lofty-login-register .hero-wrap {
    position: relative;
    overflow: hidden;
}

    .lofty-login-register .hero-wrap .hero-mask, .lofty-login-register .hero-wrap .hero-bg, .lofty-login-register .hero-wrap .hero-bg-slideshow {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    .lofty-login-register .hero-wrap .hero-mask {
        z-index: 1;
    }

    .lofty-login-register .hero-wrap .hero-content {
        position: relative;
        z-index: 2;
    }

    .lofty-login-register .hero-wrap .hero-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 3;
    }

    .lofty-login-register .hero-wrap .hero-bg-slideshow {
        z-index: 0;
    }

    .lofty-login-register .hero-wrap .hero-bg {
        z-index: 0;
        background-attachment: fixed;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        transition: background-image 300ms ease-in 200ms;
    }

        .lofty-login-register .hero-wrap .hero-bg.hero-bg-scroll {
            background-attachment: scroll;
        }

    .lofty-login-register .hero-wrap .hero-bg-slideshow .hero-bg {
        background-attachment: inherit;
    }

    .lofty-login-register .hero-wrap .hero-bg-slideshow.owl-carousel .owl-stage-outer, .lofty-login-register .hero-wrap .hero-bg-slideshow.owl-carousel .owl-stage, .lofty-login-register .hero-wrap .hero-bg-slideshow.owl-carousel .owl-item {
        height: 100%;
    }

@media (max-width: 991.98px) {
    .lofty-login-register .hero-wrap .hero-bg {
        background-attachment: initial !important;
        background-position: center center !important;
    }
}

/* 4.2 Nav */
.lofty-login-register .nav .nav-item .nav-link {
    color: #495057;
}

.lofty-login-register .nav.nav-separator .nav-item .nav-link {
    position: relative;
}

.lofty-login-register .nav.nav-separator .nav-item + .nav-item .nav-link:after {
    height: 14px;
    width: 1px;
    content: ' ';
    background-color: rgba(0, 0, 0, 0.2);
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
}

.lofty-login-register html[dir="rtl"] .nav.nav-separator .nav-item + .nav-item .nav-link:after {
    right: 0;
    left: auto;
}

.lofty-login-register .nav.nav-separator.nav-separator-light .nav-item + .nav-item .nav-link:after {
    background-color: rgba(250, 250, 250, 0.2);
}

.lofty-login-register .nav.nav-sm .nav-item .nav-link {
    font-size: 14px;
}

.lofty-login-register .nav-pills .nav-link.active, .lofty-login-register .nav-pills.nav-light .nav-link.active, .lofty-login-register .nav-pills .show > .nav-link {
    color: #fff;
}

.lofty-login-register .nav-pills .nav-link {
    color: #7b8084;
}

.lofty-login-register [data-bs-theme="dark"] .nav .nav-item .nav-link:not(.active) {
    color: #dee2e6;
}

.lofty-login-register [data-bs-theme="dark"] .nav.nav-separator .nav-item + .nav-item .nav-link:after {
    background-color: rgba(250, 250, 250, 0.2);
}

/*=== 4.3 Tabs ===*/

.lofty-login-register .nav-underline .nav-link:not(.active):hover {
    border-bottom: 0px;
    border-bottom-color: transparent;
}

.lofty-login-register .nav-underline .nav-link.active {
    font-weight: 500;
}

/* =================================== */
/*  6. Extras
/* =================================== */
/* 6.1 Form */
.lofty-login-register .form-control {
    border-color: #ff7b00;
    box-shadow: inset 0 0;
}

.lofty-login-register .form-check-input:not(:checked) {
    border-color: #dae1e3;
}

.lofty-login-register .form-control.bg-light {
    background-color: #f5f5f6 !important;
}

.lofty-login-register .form-control.border-light {
    border-color: #f5f5f6 !important;
}

.lofty-login-register .form-control:not(.form-control-sm) {
    padding: .810rem .96rem;
    height: inherit;
}

.lofty-login-register .form-control-sm {
    font-size: 14px;
}

.lofty-login-register .icon-group {
    position: relative;
}

    .lofty-login-register .icon-group .form-control {
        padding-left: 44px;
    }

    .lofty-login-register .icon-group .icon-inside {
        position: absolute;
        width: 50px;
        height: 54px;
        left: 0;
        top: 0;
        pointer-events: none;
        font-size: 18px;
        font-size: 1.125rem;
        color: #c4c3c3;
        z-index: 3;
        display: flex;
        -ms-flex-align: center !important;
        align-items: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .lofty-login-register .icon-group.icon-group-end .form-control {
        padding-right: 44px;
        padding-left: 0.96rem;
    }

    .lofty-login-register .icon-group.icon-group-end .icon-inside {
        left: auto;
        right: 0;
    }

.lofty-login-register .form-control-sm + .icon-inside {
    font-size: 0.875rem !important;
    font-size: 14px;
    top: calc(50% - 13px);
}

.lofty-login-register select.form-control:not([size]):not([multiple]):not(.form-control-sm) {
    height: auto;
    padding-top: .700rem;
    padding-bottom: .700rem;
}

.lofty-login-register .form-control:focus {
    -webkit-box-shadow: 0 0 5px #f4841c85;
    box-shadow: 0 0 5px #f4841c85;
    border-color: #F4841C !important;
}

    .lofty-login-register .form-control:focus[readonly] {
        box-shadow: none;
    }

.lofty-login-register .input-group-text {
    border-color: #dae1e3;
    background-color: #f1f5f6;
    color: #656565;
}

.lofty-login-register .form-control::-webkit-input-placeholder {
    color: #b1b4b6;
}

.lofty-login-register .form-control:-moz-placeholder {
    /* FF 4-18 */
    color: #b1b4b6;
}

.lofty-login-register .form-control::-moz-placeholder {
    /* FF 19+ */
    color: #b1b4b6;
}

.lofty-login-register .form-control:-ms-input-placeholder, .lofty-login-register .form-control::-ms-input-placeholder {
    /* IE 10+ */
    color: #b1b4b6;
}

/* 6.2 Form Dark */
.lofty-login-register .form-dark .form-control {
    border-color: #232a31;
    background: #232a31;
    color: #fff;
}

    .lofty-login-register .form-dark .form-control::-webkit-input-placeholder {
        color: #777b7f;
    }

    .lofty-login-register .form-dark .form-control:-moz-placeholder {
        /* FF 4-18 */
        color: #777b7f;
    }

    .lofty-login-register .form-dark .form-control::-moz-placeholder {
        /* FF 19+ */
        color: #777b7f;
    }

    .lofty-login-register .form-dark .form-control:-ms-input-placeholder, .lofty-login-register .form-dark .form-control::-ms-input-placeholder {
        /* IE 10+ */
        color: #777b7f;
    }

.lofty-login-register .form-dark .icon-group .icon-inside {
    color: #777b7f;
}

.lofty-login-register .form-dark .form-check-input:not(:checked) {
    background-color: #232a31;
    border-color: #232a31;
}

/* 6.3 Form Border (Input with only bottom border)  */
.lofty-login-register .form-border .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0px;
    padding-left: 0px !important;
    color: black;
}

    .lofty-login-register .form-border .form-control::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 0.4);
    }

    .lofty-login-register .form-border .form-control:-moz-placeholder {
        /* FF 4-18 */
        color: rgba(0, 0, 0, 0.4);
    }

    .lofty-login-register .form-border .form-control::-moz-placeholder {
        /* FF 19+ */
        color: rgba(0, 0, 0, 0.4);
    }

    .lofty-login-register .form-border .form-control:-ms-input-placeholder, .lofty-login-register .form-border .form-control::-ms-input-placeholder {
        /* IE 10+ */
        color: rgba(0, 0, 0, 0.4);
    }

    .lofty-login-register .form-border .form-control:focus {
        box-shadow: none;
        -webkit-box-shadow: none;
        border-bottom-color: rgba(0, 0, 0, 0.7);
    }

.lofty-login-register .form-border select option {
    color: #666;
}

.lofty-login-register .form-border .icon-group .form-control {
    padding-left: 30px !important;
}

.lofty-login-register .form-border .icon-group .icon-inside {
    color: rgba(0, 0, 0, 0.25);
    width: 30px;
    height: 52px;
    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: start !important;
    justify-content: start !important;
}

.lofty-login-register .form-border .icon-group.icon-group-end .form-control {
    padding-right: 30px !important;
    padding-left: 0 !important;
}

.lofty-login-register .form-border .icon-group.icon-group-end .icon-inside {
    left: auto;
    right: 0;
    -ms-flex-pack: end !important;
    justify-content: end !important;
}

/* 6.4 Form Border Light (Input with only bottom border)  */
.lofty-login-register .form-border-light .form-control {
    border-bottom: 1px solid rgba(250, 250, 250, 0.3);
    color: #fafafa;
}

    .lofty-login-register .form-border-light .form-control::-webkit-input-placeholder {
        color: rgba(250, 250, 250, 0.7);
    }

    .lofty-login-register .form-border-light .form-control:-moz-placeholder {
        /* FF 4-18 */
        color: rgba(250, 250, 250, 0.7);
    }

    .lofty-login-register .form-border-light .form-control::-moz-placeholder {
        /* FF 19+ */
        color: rgba(250, 250, 250, 0.7);
    }

    .lofty-login-register .form-border-light .form-control:-ms-input-placeholder, .lofty-login-register .form-border-light .form-control::-ms-input-placeholder {
        /* IE 10+ */
        color: rgba(250, 250, 250, 0.7);
    }

    .lofty-login-register .form-border-light .form-control:focus {
        border-bottom-color: rgba(250, 250, 250, 0.8);
    }


.lofty-login-register .form-border-light .icon-group .icon-inside {
    color: #777b7f;
}

.lofty-login-register .form-border-light select option {
    color: #333;
}

/* 6.5 Vertical Multilple input group */
.lofty-login-register .vertical-input-group .input-group:first-child {
    padding-bottom: 0;
}

    .lofty-login-register .vertical-input-group .input-group:first-child * {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

.lofty-login-register .vertical-input-group .input-group:last-child {
    padding-top: 0;
}

    .lofty-login-register .vertical-input-group .input-group:last-child * {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.lofty-login-register .vertical-input-group .input-group:not(:last-child):not(:first-child) {
    padding-top: 0;
    padding-bottom: 0;
}

    .lofty-login-register .vertical-input-group .input-group:not(:last-child):not(:first-child) * {
        border-radius: 0;
    }

.lofty-login-register .vertical-input-group .input-group:not(:first-child) * {
    border-top: 0;
}

/* 6.6 Other Bootstrap Specific */
.lofty-login-register .btn {
    padding: 0.8rem 2.6rem;
    font-weight: 500;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.lofty-login-register .btn-sm {
    padding: 0.5rem 1rem;
}

.lofty-login-register .btn:not(.btn-link) {
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

    .lofty-login-register .btn:not(.btn-link):hover {
        -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

.lofty-login-register .input-group-append .btn, .lofty-login-register .input-group-prepend .btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

    .lofty-login-register .input-group-append .btn:hover, .lofty-login-register .input-group-prepend .btn:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

@media (max-width: 575.98px) {
    .lofty-login-register .btn:not(.btn-sm) {
        padding: .810rem 2rem;
    }

    .lofty-login-register .input-group > .input-group-append > .btn, .lofty-login-register .input-group > .input-group-prepend > .btn {
        padding: 0 0.75rem;
    }
}

/* login-btn-start */

.btn-hover {
    background-color: #ff7b00;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

    .btn-hover:hover {
        background-color: #f32e2e;
        color: white;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
    }
/* login-btn-end */

.login-27 {
    top: 0;
    width: 100%;
    text-align: center;
    bottom: 0;
    opacity: 1;
    z-index: 999;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background-image: linear-gradient(to bottom, #000000, #000000);
}

    .login-27 #particles-js {
        background-size: cover;
        background-position: 50% 50%;
        position: fixed;
        min-height: 100vh;
        width: 100%;
        z-index: -999;
    }

.hero-mask {
    background-color: #ffffffa4;
}

.bg-theme {
    background-color: #2C3494;
}

.login-label {
    color: #ff7b00;
}

.text-orenge {
    color: #202cb4;
}

.applicant-control {
    border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    -ms-border-radius: 30px !important;
    -o-border-radius: 30px !important;
}

a {
    /* display: block; 
    text-align: right;*/
    text-decoration: none;
    color: #d7d7d7;
    font-size: 0.9rem;
    transition: .3s;
}

   a:hover {
        color: #38d39f;
    }

/*------------------------------- registration completed start -------------------------------------*/
.registration-completed {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.success-container {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.success-icon {
    font-size: 5rem;
    color: green;
    margin-bottom: 1rem;
    animation: bounce 1.5s infinite;
}

.success-message {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-details {
    font-size: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .success-icon {
        font-size: 4rem;
    }

    .success-message {
        font-size: 1.2rem;
    }

    .success-details {
        font-size: 0.9rem;
    }
}

.success-message {
    color: #202cb4 !important;
    font-size: 1.5rem;
    font-weight: bold;
}

.success-details {
    font-weight: 500;
    font-size: 1rem;
    color: #555;
}

.click-here {
    font-size: 14px;
    color: #585858;
    font-weight: 500;
    text-decoration: underline;
}

.login-button {
    display: inline-block;
    padding: 0.70rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: #ff5722;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .login-button:hover {
        color: #000000 !important;
    }

    .login-button::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .login-button:hover::after {
        transform: scaleX(1);
    }

    .login-button:active {
        transform: scale(0.95);
    }
/*------------------------------- registration completed end -------------------------------------*/

.splash {
    background-image: url('../images/bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    align-content: center;
}