﻿* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Open Sans";
  
}
.body{
    background-color:#ececec;
}
::-webkit-input-placeholder {
  color: #c3c3c3;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

.u-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tooltip {
  width: 120px;
}
.tooltip-inner {
  padding: 8px 10px;
  color: #fff;
  text-align: center;
  background-color: #051835;
  font-size: 12px;
  border-radius: 3px;
}
.tooltip-arrow {
  border-right-color: #051835 !important;
}

.hamburger-toggle {
  position: relative;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  order: 1;
}
.hamburger-toggle [class*='bar-'] {
  display: block;
  background: #102c58;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .2s ease all;
  transition: .2s ease all;
  border-radius: 2px;
  height: 2px;
  width: 24px;
  margin-bottom: 4px;
}
.hamburger-toggle [class*='bar-']:nth-child(2) {
  width: 18px;
}
.hamburger-toggle [class*='bar-']:last-child {
  margin-bottom: 0;
  width: 12px;
}
.hamburger-toggle.is-opened {
  left: 3px;
}
.hamburger-toggle.is-opened [class*='bar-'] {
  background: #102c58;
}
.hamburger-toggle.is-opened .bar-top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 15% 15%;
  transform-origin: 15% 15%;
}
.hamburger-toggle.is-opened .bar-mid {
  opacity: 0;
}
.hamburger-toggle.is-opened .bar-bot {
  -webkit-transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 15% 95%;
  transform-origin: 15% 95%;
  width: 24px;
}
.hamburger-toggle:focus {
  outline-width: 0;
}
.hamburger-toggle:hover [class*='bar-'] {
  background: #f52d2d;
}
.sidebar-is-expanded .hamburger-toggle svg{
    transform:rotate(180deg);
  -webkit-transition: all  0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all  0.5s linear;
  transition: all  0.5s linear;
}

.c-header-icon {
  position: relative;
  display: flex;
  float: left;
  width: 70px;
  height: 100%;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  border-right: 1px solid #cccccc;
}
.c-header-icon i {
  font-size: 30px;
  line-height: 50px;
}
.c-header-icon--in-circle {
  border: 1px solid #d0d0d0;
  border-radius: 100%;
}
.c-header-icon:hover i {
  color: #f52d2d;
}

.l-header {
  padding-left: 70px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height:58px;
  background: #ffffff;
  -webkit-transition: padding 0.5s ease-in-out;
  -moz-transition: padding 0.5s ease-in-out;
  -ms-transition: padding 0.5s ease-in-out;
  -o-transition: padding 0.5s ease-in-out;
  transition: padding 0.5s ease-in-out;
}
.l-header__inner {
  height: 100%;
  width: 100%;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: stretch;
  border-bottom: 1px solid;
  border-color: #cccccc;
}
.sidebar-is-expanded .l-header {
  padding-left: 220px;
}


.l-sidebar {
  width: 70px;
  display: flex;
  flex-direction: column;
  position: fixed; 
  z-index: 10;
  left: 0;
  top: 0;
  bottom: 0;
  background: #102c58;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -ms-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.l-sidebar__content {
  height: 100%;
  position: relative;
}
.sidebar-is-expanded .l-sidebar {
  width: 220px;
}

.c-menu > ul {
  display: flex;
  flex-direction: column;
}
.c-menu > ul .c-menu__item {
  color: #fff;
  max-width: 100%;
  overflow: hidden;
}
.c-menu > ul .c-menu__item__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 60px;
  position: relative;
  color:white;
  text-decoration:none;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.c-menu > ul .c-menu__item__inner:before {
  position: absolute;
  content: " ";
  height: 0;
  width: 4px;
  border-radius: 50px;
  left: 0;
  top: 50%;
  margin-top: -18px;
  background-color: #5f9cfd;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.c-menu > ul .c-menu__item.isactive .c-menu__item__inner {
  border-left-color: #f52d2d;
  background-color: #f52d2d;
}
.c-menu > ul .c-menu__item.isactive .c-menu__item__inner i {
  color: #5f9cfd;
}
.c-menu > ul .c-menu__item.isactive .c-menu__item__inner:before {
  height: 36px;
  opacity: 1;
}
/*.c-menu > ul .c-menu__item:not(.isactive):hover .c-menu__item__inner {
  background-color: #f52d2d;
  border-left-color: #f52d2d;
}*/
.c-menu > ul .c-menu__item svg {
  flex: 0 0 70px;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  color:white;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.c-menu > ul .c-menu__item .c-menu-item__expand {
  position: relative;
  left: 100px;
  padding-right: 20px;
  margin-left: auto;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.sidebar-is-expanded .c-menu > ul .c-menu__item .c-menu-item__expand {
  left: 0px;
}
.c-menu > ul .c-menu__item .c-menu-item__title {
  flex-basis: 100%;
  padding-right: 10px;
  position: relative;
  left: 220px;
  opacity: 0;
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.c-menu > ul .c-menu__item .c-menu-item__title span {
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.sidebar-is-expanded .c-menu > ul .c-menu__item .c-menu-item__title {
  left: 0px;
  opacity: 1;
}
.c-menu > ul .c-menu__item .c-menu__submenu {
  background-color: #051835;
  padding: 15px;
  font-size: 12px;
  display: none;
}
.c-menu > ul .c-menu__item .c-menu__submenu li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-color: #072048;
  color: #5f9cfd;
}
.c-menu > ul .c-menu__item .c-menu__submenu li:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.header-icons-group {
  display: flex;
  order: 3;
  margin-left: auto;
  height: 100%;
  border-left: 1px solid #cccccc;
}
.header-icons-group .c-header-icon:last-child {
  border-right: 0;
}
.main.l-main {
  width: 100%;
  height: 100%;
  min-height:90vh;
  padding: 70px 0 0 70px;
  -webkit-transition: padding 0.5s ease-in-out;
  -moz-transition: padding 0.5s ease-in-out;
  -ms-transition: padding 0.5s ease-in-out;
  -o-transition: padding 0.5s ease-in-out;
  transition: padding 0.5s ease-in-out;
}

.sidebar-is-expanded .main.l-main {
  padding-left: 220px;
}
.logoIN {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
}
.logoIN img {
  max-width: 80%;
  height: 60px;
  min-height: 50px;
  object-fit: contain;
}
 .logoEND {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background-color: #ffffff;
  padding: 0 10px 5px 0;
  box-sizing: border-box;
}
.logoEND img {
  max-width: 80%;
  max-height: 45px;
  object-fit: contain;
}
.c-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.nav-items {
  padding-bottom: 10px;
}

.logout-items {
  margin-top: auto;
}
.radio-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .radio-row {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .radio-option {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }
        .main.l-main .content-wrapper {
            padding: 10px 25px;
            /*height: 100%;*/
        }

        .welcome-banner {
            background-color: #1e3e6f;
            border: 1px solid #dcdcdc;
            border-left: 5px solid #d6251f;
            border-radius: 6px;
            padding: 15px 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

            .welcome-banner h4 {
                margin: 0 0 2px;
                font-size: 20px;
                font-weight: 600;
                color: #ffffff;
            }

            .welcome-banner p {
                margin: 0;
                padding: 0;
                font-size: 14px;
                color: #ffffff;
            }

        .form-horizotal {
            max-width: 1050px;
            margin: 0 auto;
        }

            .form-horizotal h2 {
                /*text-align: center;*/
                /*margin-bottom: 15px;*/
                color: #1e3e6f;
                font-size: 26px;
                /*text-decoration:underline;*/
                padding: 0 10px;
                /*background: -webkit-linear-gradient(left, #630202, #020497);*/
            }
            .form-horizotal .h-red{
                color:#d6251f !important;
            }

        .form-container {
            background: #ffffff;
            padding: 10px 20px 5px;
            border-radius: 5px;
            box-shadow: -1px 4px 14px 9px rgba(10, 10, 10, 0.2);
            max-width: 1050px;
            margin: 10px auto;
        }

        .sidestrap {
            border-left: 5px solid #d6251f;
            border-radius: 6px;
        }

        .ibsindia {
            color: #260a8d;
            font-size: 30px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        /* Floating Label Input Styles */
        .form-floating {
            position: relative;
            margin-bottom: 20px;
            flex: 1;
        }

        .form-captcha {
            margin-bottom: 20px;
            flex: 1;
        }

        .form-floating .Ticon {
            position: absolute;
            top: 55%;
            left: 15px;
            transform: translateY(-50%);
            color: #b71c1c;
            font-size: 18px;
        }

        .form-floating .form-control,
        .form-floating .form-select {
            height: calc(3rem + calc(var(--bs-border-width)* 2));
            min-height: calc(3rem + calc(var(--bs-border-width)* 2));
            padding: 10px 8px 8px 40px;
            font-size: 15px;
            color: black;
            /*border: 1px solid rgb(38, 10, 141);*/
            border: 1px solid rgba(10, 10, 10, 0.2);
            border-radius: 6px;
            background-color: transparent;
            font-weight: 600;
            /*box-shadow: -4px 2px 7px 0px rgba(0, 123, 255, 0.35)*/
            box-shadow: -1px 0px 1px 0px rgba(10, 10, 10, 0.2);
        }

            .form-floating label,
            .form-floating .form-select + label {
                position: absolute;
                top: 50%;
                left: 30px;
                transform: translateY(-50%);
                color: #1e3e6f;
                font-size: 14px;
                font-weight: 600;
                transition: all 0.2s ease-in-out;
                pointer-events: none;
            }

            .form-floating .form-control:focus + label::after,
            .form-floating .form-control:not(:placeholder-shown) + label::after {
                background-color: transparent;
            }

        .form-floating .text_area {
            height: calc(4rem + calc(var(--bs-border-width)* 2)) !important;
            min-height: calc(4rem + calc(var(--bs-border-width)* 2)) !important;
        }

            form-floating .text_area:focus + label::after,
            .form-floating .text_area:not(:placeholder-shown) + label::after {
                background-color: white;
                top: 10px;
            }

            .form-floating .text_area + label {
                top: 60%;
            }

        .form-floating .form-control:focus,
        .form-floating .form-control:not(:placeholder-shown),
        .form-floating .form-select:not(:placeholder-shown) {
            padding-top: 20px;
            padding-bottom: 6px;
        }

            .form-floating .form-control:focus + label,
            .form-floating .form-control:not(:placeholder-shown) + label {
                top: 1px;
                left: 30px;
                font-size: 14px;
                font-weight: 700;
                color: #1e3e6f; /* Change to your primary color */
            }

        .form-floating .form-select.filled + label {
            top: 15px;
            left: 30px;
            font-size: 12px;
            font-weight: 700;
            color: #1e3e6f;
        }



        /* Add focus styles */
        .form-floating .form-control:focus,
        .form-floating .form-select:focus {
            /*border-color: #b71c1c;*/
            /*box-shadow: -4px 2px 7px 0px #b71c1c85;*/
            border: 1px solid #b71c1c;
            box-shadow: -1px 0px 1px 0px #b71c1c;
        }

        .form-field-wrapper {
            display: flex;
            align-items: center;
        }

        .consent-checkbox {
            margin-left: 10px;
            margin-right: 10px;
        }

        .consent-label {
            font-size: 14px;
            font-weight: 600;
            color: #555;
        }

        .btn-submit {
            background: #b71c1c;
            color: #fff;
            border: none;
            padding: 10px 40px 10px;
            font-size: 18px;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.3s;
        }

            .btn-submit:hover {
                background: #7f0000;
            }

        .captcha {
            -webkit-user-select: none; /* Safari */
            -ms-user-select: none; /* IE 10 and IE 11 */
            user-select: none;
            height: calc(3rem + calc(var(--bs-border-width)* 2));
            min-height: calc(3rem + calc(var(--bs-border-width)* 2));
            background-image: url(../../assets/images/captha.jfif);
            background-repeat: no-repeat;
            background-size: cover;
            font-size: 27px;
            letter-spacing: 10px;
            min-width: 85%;
            color: #857b7b;
            border-radius: 4px;
            text-align: center;
            padding: 8px 0px;
        }

        .refresh_btn {
            padding: 12px;
            position: relative;
            top: -8px;
            right: 4px;
        }

        @media (max-width: 768px) {
            .main.l-main .content-wrapper {
    padding: 10px 5px;
}
            .sidebar-is-expanded .main.l-main {
  padding-left: 70px;
}
            .form-row {
                flex-direction: column;
                gap: 5px;
            }

            .header {
                flex-direction: column;
                text-align: center;
            }
           
        }
        @media (max-width:650px){
            .form-horizotal h2 {
                 padding: 0 3px;
            }
             .form-floating label, .form-floating .form-select + label{
                display: inline-block;     /* or block if you prefer */
    max-width: 350px;          /* or width: 100% depending on your layout */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:12px;
            }
        }
        @media (max-width:450px){
             .form-floating label, .form-floating .form-select + label{
                display: inline-block;     /* or block if you prefer */
    max-width: 210px;          /* or width: 100% depending on your layout */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:12px;
            }
        }

/*Login Page CSS*/
        .form-right .heading {
  display: flex;
  align-items: center;
  text-align: center;
  color: #070491;
  font-weight: 600;
  margin: 30px 0;
   font-size: 33px;
}

.form-right .heading::before,
.form-right .heading::after {
  content: "";
  flex: 1;
  border-bottom: 4px solid #d92727;
  background-color:#d92727;
  margin: 0 12px;
}

        .lgnform {
            background: linear-gradient(to right, #630202, #020497);
                position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
            padding: 3%;
            max-width:1000px;
        }

        .form-left {
            text-align: center;
            color: #fff;
            margin-top:80px;
        }

        .form-right {
            background: #f8f9fa;
            border-top-left-radius: 10% 50%;
            border-bottom-left-radius: 10% 50%;
            max-width:800px;
        }
        .form-right .lgn-btn{
            background-color:#d92727;
            color:#fff;
            
        }
        .form-right .lgn-btn:hover{
            background-color:#070491;

            color:#fff;
        }
          @media(max-width:760px){
            .form-right .row{
                padding-left:40px;
            }
        }


          .tbl_space {
            min-width: 25px;
            font-weight:600;
            text-align:right;
        }
        @media (max-width:450px) {
             .tbl_space {
            min-width: 10px;
        }
           .bio table tr {
                border-bottom: 1px solid #00000024;
            }
        }

.prf_logo img{
    height:60px;
    text-align:center;
    width:60px;
    margin:18px 4px;
    background-color:white;
     border-radius:50%;
        -webkit-transition: all   0.5s linear;
  -moz-transition: all   0.5s linear;
  -ms-transition: all  0.5s linear;
  -o-transition: all  0.5s linear;
  transition: all   0.5s linear;
  
}
.sidebar-is-expanded  .prf_logo img{
   height:120px;
    text-align:center;
    width:120px;
    margin:20px 45px;
    background-color:white;
     border-radius:50%;
     -webkit-transition: all  1s linear;
  -moz-transition: all  1s linear;
  -ms-transition: all  1s linear;
  -o-transition: all  1s linear;
  transition: all  1s linear;
}
       
.c-menu > ul .c-menu__item:not(.isactive):hover .act {
  background-color: #f52d2d !important;
  border-left-color: #f52d2d !important;
}