
  /*========================================================================
  login
  =========================================================================*/
  *, *::before, *::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--thm-black);
}
 /*--------------------------------------------------------------
  # Common
  --------------------------------------------------------------*/
  :root {
    scroll-behavior: auto;
    --thm-font: "Inter", sans-serif;
    --heading-font: "Inter", sans-serif;
    --special-font: "reeyregular", sans-serif;
    --thm-color: #000248;
        --thm-base: #0b48c2;
    --thm-orangecolor: #ffad00;
    --thm-w-color: #fff; 
    --thm-blue-color: #0b48c2;
    --thm-bg-color: #f4f7fc;
    --thm-base-rgb: 230, , 39;
      --thm-primary: #f7c35f;
      --thm-primary-rgb: 247, 195, 95;
      --thm-secondary: #ed4b4b;
      --thm-secondary-rgb: 237, 75, 75;
      --thm-special: #5366c2;
      --thm-special-rgb: 83, 102, 194;
      --thm-black: #1c1c27;
      --thm-black-rgb: 28, 28, 39;
      --thm-black2: #16161f;
      --thm-black2-rgb: 22, 22, 31;
      --thm-gray: #f2ede9;
      --thm-gray-rgb: 242, 237, 233;
      --thm-border-color: #e7e1dc;
      --thm-border-color-rgb: 231, 225, 220;
      --thm-text-dark: #a2a2b1;
      --thm-text-dark-rgb: 162, 162, 177;
    --btnbg: linear-gradient(90deg, rgba(61,14,109,1) 0%, rgba(19,58,136,1) 100%);
    --ltn__box-shadow-1: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
      --ltn__box-shadow-2: 0 0 4px rgba(0, 0, 0, 0.1);
      --ltn__box-shadow-3: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
      --ltn__box-shadow-4: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
      --ltn__box-shadow-5: 0 8px 16px 0 rgba(93, 93, 93, 0.1);
      --ltn__box-shadow-6: 0 0 25px 2px rgba(93, 93, 93, 0.2);
      --ltn__box-shadow-7: 0 0 10px 0px rgba(93, 93, 93, 0.2);
      --ltn__box-shadow-8: 6px 11px 41px -28px #796eb1;
      --bg-orange-gradiunt: linear-gradient(135deg, #ff7133, #ff8c5a);
    
  }
  
  body {
    font-family: var(--thm-font);
    color: var(--thm-color);
    font-size: 16px;
    line-height: 1.875;
  }
  a, a:hover, a:focus, a:visited {
    text-decoration: none;
}
  
  a {
    color: var(--thm-base);
  }
   @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');
  .loginBoxArea {
   
    width: 100%;
    min-height: 100vh;
    display: -ms-grid;
    display: grid;
    position: relative;
    z-index: 1;
    /* Added by sahil */
    background: white; 
  }
.loginBoxArea .logoPanel{ position: absolute; left: 40px; top: 30px; }
.loginAgencyByn{ position: absolute; right: 40px; top: 30px; background: #0083c7; color: #fff; font-size: 14px; padding: 2px 12px; border-radius: 8px;}
.loginAgencyByn i{ vertical-align: middle; }
.loginAgencyByn:hover{background: #fb9f1c; color: #fff;}
   .loginBoxArea .logoPanel img{ height: 50px; }
  .loginBoxArea .fxt-content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  @media only screen and (max-width: 991px) {
    .loginBoxArea .fxt-content-wrap {
      display: block;
    }
  }
  .loginBoxArea .fxt-heading-content {
    padding: 30px;
    position: relative;
    overflow: hidden;
    width: 57%;
      
       background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  @media only screen and (max-width: 991px) {
    .loginBoxArea .fxt-heading-content {
      width: 100%;
    }
  }
  @media only screen and (max-width: 575px) {
    .loginBoxArea .fxt-heading-content {
      padding: 15px;
    }
  }
  .loginBoxArea .fxt-heading-content:before {
    content: "";
  /*   border-radius: 0 100px 100px 0; */
    position: absolute;
    z-index:2;
    height: 100%;
    width: 100%;
    opacity: 0.9;
       background: rgb(129,56,234);
background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%);
   
    top: 0;
    left: 0;
  }
  @media only screen and (max-width: 991px) {
    .loginBoxArea .fxt-heading-content:before {
      border-radius: 0;
    }
  }
  .loginBoxArea .fxt-heading-content .fxt-inner-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* -webkit-box-pack: justify;
    -ms-flex-pack: justify; */
    /* justify-content: space-between; */
   /*  max-height: 500px; */
    height: 100%;
    padding: 60px 10px;
    border-radius: 30px;

    z-index: 9;
   /*  max-width: 515px; */
    width: 100%;
   /*  background-color: rgba(221, 240, 247, 0.4); */
  }
  @media only screen and (max-width: 575px) {
    .loginBoxArea .fxt-heading-content .fxt-inner-wrap {
      padding: 40px 30px;
      border-radius: 15px;
    }
  }
  .loginBoxArea .fxt-heading-content .fxt-logo {
    margin-bottom: 30px;
    display: block;
    max-width: 35vw;
  }
  .loginBoxArea .fxt-heading-content .fxt-sub-title {
        color: var(--thm-color);
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 300;
  }
  @media only screen and (max-width: 767px) {
    .loginBoxArea .fxt-heading-content .fxt-sub-title {
      font-size: 22px;
    }
  }
  .loginBoxArea .fxt-heading-content .fxt-main-title {
        color:#fff;
/* text-shadow: 0 0 21px #000; */
    margin-bottom: 10px;
    font-size: 70px;
    text-transform: uppercase;
    line-height: 72px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
  }
 .loginBoxArea .fxt-heading-content .fxt-main-title span{
  font-weight: 700;
    display: block;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
    background: url(../images/animated-text.png) repeat-y;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 80s linear infinite;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
}

@-webkit-keyframes aitf {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
@keyframes aitf {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

  @media only screen and (max-width: 991px) {
    .loginBoxArea .fxt-heading-content .fxt-main-title {
      font-size: 30px;
    }
  }
  @media only screen and (max-width: 767px) {
    .loginBoxArea .fxt-heading-content .fxt-main-title {
      font-size: 28px;
    }
  }
  .loginBoxArea .fxt-heading-content .fxt-description {
        color:#fff;
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 0;
    font-weight: 600;
    width: 100%;
    margin-bottom: 15px;
    text-shadow: 0 0 15px #000;
  }
  .loginBoxArea .fxt-heading-content .fxt-switcher-description {
    font-size: 16px;
    font-weight: 600;
        color: #fff;
  }
  .loginBoxArea .fxt-heading-content .fxt-switcher-description h6{ font-size: 19px;  font-weight: 400;
        color: #fff; margin-bottom: 20px; text-shadow: 0 0 18px #000;  font-family: 'Roboto', sans-serif;}
  .loginBoxArea .fxt-heading-content .fxt-switcher-description h6 span{color: #ffbc1a;}      
   .loginBoxArea .fxt-heading-content .fxt-switcher-description a{background: transparent; border: 1px solid #fff; padding:6px 10px; line-height: 16px; 
    font-size: 14px; border-radius: 50px; display: inline-block; color: #fff; margin-bottom: 10px; margin-right: 5px;}
    .loginBoxArea .fxt-heading-content .fxt-switcher-description a:hover{ background:#1874eb;  }
    .loginBoxArea .fxt-heading-content .fxt-switcher-description a i{ width: 20px; height: 20px; display: inline-block; line-height: 20px; text-align: center; background: #ffbc18; color: #000; border-radius: 10px; vertical-align: middle; }
  .loginBoxArea .fxt-heading-content .fxt-switcher-description .fxt-switcher-text {
    display: table;
        color: var(--thm-color);
    font-weight: 500;
  }
  .loginBoxArea .fxt-heading-content .fxt-switcher-description .fxt-switcher-text:hover {
    text-decoration: underline;
  }
  .loginBoxArea .fxt-form-content {
    width: 43%; margin: auto; padding:0px 96px;
    /* box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); */
    height: 100%;
    position: relative;
    
  }
  
  @media only screen and (max-width: 991px) {
    .loginBoxArea .fxt-form-content {
      width: 100%;
    }
  }
  .loginBoxArea .fxt-form-content .fxt-page-title {
   font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: #000000;
    margin-top: 100px;


  }
    .loginBoxArea .fxt-form-content .fxt-page-title span{ display: block; font-size: 13px; color: #888888; }
   .loginBoxArea .fxt-form-content .fxt-page-title p{ font-size: 14px; }
  .loginBoxArea .fxt-form-content .fxt-page-title span a.sign-button {
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 10px;
      background-color: #3195ff;
      text-decoration: none;
      margin-left: 10px;
      -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
      -webkit-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
  }
  @media only screen and (max-width: 1199px) {
    .loginBoxArea .fxt-form-content .fxt-page-title {
      font-size: 32px;
    }
  }
  @media only screen and (max-width: 991px) {
    .loginBoxArea .fxt-form-content .fxt-page-title {
      font-size: 30px;
    }
  }
  @media only screen and (max-width: 767px) {
    .loginBoxArea .fxt-form-content .fxt-page-title {
      font-size: 28px;
    }
  }
  @media only screen and (max-width: 575px) {
    .loginBoxArea .fxt-form-content .fxt-page-title {
      font-size: 26px;
    }
  }
  @media only screen and (max-width: 479px) {
    .loginBoxArea .fxt-form-content .fxt-page-title {
      font-size: 24px;
    }
  }
  .loginBoxArea .fxt-form-content .fxt-description {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
  }
  .loginBoxArea .fxt-form-content .fxt-label {
      color: #14133b;
      font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
      margin-bottom: 8px;
  }
  .loginBoxArea .fxt-form-content .fxt-main-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  @media only screen and (max-width: 991px) {
    .loginBoxArea .fxt-form-content .fxt-main-form {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }
  @media only screen and (max-width: 575px) {
    .loginBoxArea .fxt-form-content .fxt-main-form {
      padding: 40px 15px 30px;
    }
  }
  .loginBoxArea .fxt-form-content .fxt-inner-wrap {
    width: 100%;

  }
  .loginBoxArea .fxt-form-content .fxt-inner-wrap.singUpBox{max-width:100%;}
  .websiteDomainBox{ font-size: 13px; line-height: 18px; background: #fff; padding: 8px; border-radius: 10px;}
  .websiteDomainBox .websiteDomainBoxImg{ width: 40px; }
  .websiteDomainBox .websiteDomainBoxImg img{     width: 100%;
      margin-right: 10px;
      float: left;
      background: #fff;
      padding: 5px;
      border-radius: 5px;
      border: 1px solid #e7e7e7;
      
      /* box-shadow: 6px 11px 41px -28px #796eb1;
      -webkit-box-shadow: 0px 0px 8px #c3c3c3;  */
    }
  
  .webImgBox{margin-right: 10px;
      float: left;
      background: #fff;
      padding: 5px;
      border-radius: 5px;
      box-shadow: 6px 11px 41px -28px #796eb1;
      -webkit-box-shadow: 0px 0px 8px #c3c3c3;}
  
  .webImgBox .webImgArea{ height: 100px; overflow: hidden; } 
  .webImgBox .webImgArea img{ width: 100%; }   
  .loginBoxArea .fxt-form-content .form-group {
    position: relative;
    /* z-index: 1; */
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 15px;
  }
  .loginBoxArea .fxt-form-content .form-group i{ position: absolute; left: 7px; top: 2px; font-size: 20px; color: #a7a7a7; }
  .loginBoxArea .fxt-form-content .row .form-group i{right: 10px;}
  .loginBoxArea .fxt-form-content .form-control {
     border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 500;
    padding:7px 13px;
    font-size: 0.875rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05) !important;
  }
  .loginBoxArea .fxt-form-content input::-webkit-input-placeholder {
    color: #59626f;
    font-size: 0.875rem;
    font-weight: 500;
  }
  .loginBoxArea .fxt-form-content input::-moz-placeholder {
    color: #59626f;
    font-size: 0.875rem;
    font-weight: 500;
  }
  .loginBoxArea .fxt-form-content input:-moz-placeholder {
    color: #59626f;
   font-size: 0.875rem;
    font-weight: 500;
  }
  .loginBoxArea .fxt-form-content input:-ms-input-placeholder {
    color: #59626f;
    font-size: 17px;
    font-weight: 400;
  }
 .loginBoxArea .fxt-form-content .form-control:focus {
    color: #000;
    border-color: #000;
    outline: 0;
    box-shadow:none;
}
  .loginBoxArea .fxt-form-content .fxt-otp-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .loginBoxArea .fxt-form-content .fxt-otp-row .fxt-otp-col {
    padding: 10px 5px;
    text-align: center;
    margin-right: 30px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .loginBoxArea .fxt-form-content .fxt-otp-row .fxt-otp-col:last-child {
    margin-right: 0;
  }
  .loginBoxArea .fxt-form-content .fxt-otp-btn {
    margin-bottom: 20px;
  }
  .loginBoxArea .fxt-form-content .fxt-switcher-description {
    text-align: center;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #646464;
  }
  .loginBoxArea .fxt-form-content .fxt-switcher-text {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    color: #2e5bdb;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .loginBoxArea .fxt-form-content .fxt-switcher-text:hover {
    color: #2e5bdb;
    text-decoration: underline;
  }
  .loginBoxArea .fxt-form-content .fxt-switcher-text:focus {
    outline: none;
  }
  .loginBoxArea .fxt-form-content .fxt-checkbox-box {
    margin-bottom: 25px;
  }
  .font-normal{font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;}
  .loginBoxArea .fxt-form-content .fxt-checkbox-box label {
    color: #14133b;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
  }
  .loginBoxArea .fxt-form-content .fxt-checkbox-box label:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 5px;
    left: 0;
    right: 0;
    border: 1px solid;
    border-color: #dcdcdc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  }
  .loginBoxArea .fxt-form-content .fxt-checkbox-box label:after {
    position: absolute;
    font-size: 10px;
    color: #555555;
  }
  .loginBoxArea .fxt-form-content .fxt-checkbox-box input[type="checkbox"] {
    display: none;
  }
  .loginBoxArea .fxt-form-content .fxt-checkbox-box input[type="checkbox"]:checked + label::after {
    font-family: 'Font Awesome 5 Free';
    content: "\f00c";
    font-weight: 900;
        color: var(--thm-color);
    left: 0;
    right: 0;
    top: 5px;
    width: 16px;
    text-align: center;
  }
  .loginBoxArea .fxt-form-content .fxt-checkbox-box input[type="checkbox"]:checked + label::before {
    background-color: #1ebe92;
    border-color: #1ebe92;
  }
  
  .loginBoxArea .fxt-form-content .fxt-btn-fill {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    border: 0;
    color: #fff;
       border-radius: 0.375rem;
    background: #0284c7;
    padding: 2px 36px 2px 36px; min-width: 210px; transition: 0.2s;
   
}
.loginBoxArea .fxt-form-content .fxt-btn-fill span span{margin-bottom: 0!important;}
.google-btn{min-width: 210px; transition: 0.2s;}
.google-btn svg {
  width: 20px;
}
.google-btn:hover {
  background: #00000021;
}
hr{ background: #e2e8f0; opacity: 1;}
.text-muted{ color: #000 !important; font-weight: 500 !important; }
  .loginBoxArea .fxt-form-content .fxt-btn-fill:hover {
    background-color:#f1c80b;
  }
  .loginBoxArea .fxt-form-content .fxt-btn-fill:focus {
    outline: none;
  }

.loginSectionBox{width: 100%; margin-top: 30px;}
.loginSectionBox .nav {
    margin-bottom: 0px;
    background: #fff;
    border: 0;
    border-radius: 50px;
    overflow: hidden;
    width: 80%;
    margin: auto;
}
  .loginSectionBox .nav.nav-tabs .nav-link{ border:0;  background: #f3f3f3; color: #000;
   padding:10px 5px; font-size: 16px; border-radius: 0px; line-height: 18px; font-weight: 500; }
  .loginSectionBox .nav.nav-tabs .nav-link.active{ background: #0284c7; color: #fff;}
  .loginSectionBox .loginAreaPanel{
      width: 100%;
      position: relative;
      z-index: 100000;
   
  }
  

 .loginBoxArea .loginAreaPanel .loginWithBox{  padding-bottom:20px; }
.loginBoxArea .loginAreaPanel .loginWithBox h4 {
    text-align: center;
    font-size: 18px;
    display: table;
    background: #fff;
    margin: auto;
    padding: 0 10px;
    margin-top: -27px;
}
 .loginBoxArea .loginAreaPanel .loginWithBox ul{ list-style: none;  }
 .loginBoxArea .loginAreaPanel .loginWithBox ul li{}
 .loginBoxArea .loginAreaPanel .loginWithBox ul li a, .loginBoxArea .loginAreaPanel .loginWithBox ul li button{
 color: #fff;
  border-radius: 7px; 
      font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
   padding: 3px 16px;
   border: 1px solid #fff; display: block; text-align: center;
}
.loginBoxArea .loginAreaPanel .loginWithBox ul li a i,
.loginBoxArea .loginAreaPanel .loginWithBox ul li button i{ vertical-align: middle; }

 .loginBoxArea .loginAreaPanel .loginWithBox ul li a:hover{ border-color: #000; color: #000; background: transparent !important; }

.signUplink{ font-size: 14px; }
.signUplink a{ color: #ff9800; font-weight: 600; font-size: 15px; }
 .loginBoxArea .loginAreaPanel .accountBox{ padding: 20px 0 0 0; border: 0;     border-top: 1px solid #d3d3d3;}


.loginBoxArea .loginAreaPanel .accountBox h4 {
    text-align: center;
    font-size: 18px;
    display: table;
    background: #fff;
    margin: auto;
    padding: 0 10px;
    margin-top: -32px;
    margin-bottom: 15px;
}
 .loginBoxArea .loginAreaPanel .accountBox a.btn{cursor: pointer;
    display:block;
    font-size: 18px;
    font-weight: 500;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #d9d9d9;
    outline: none;
    display: inline-block;
    color: #131313;
    border-radius: 50px;
    background-color: #fff;
    padding: 9px 56px;
}
 .loginBoxArea .loginAreaPanel .accountBox a.btn:hover{ background-color: #2bb3e5; border: 1px solid #2bb3e5; color: #fff;}




  @media only screen and (max-width: 767px) {
    .loginBoxArea .fxt-form-content .fxt-btn-fill {
      font-size: 16px;
    }
  }
  .loginBoxArea .fxt-form-content .fxt-divider-text {
    text-align: center;
    margin-bottom: 20px;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -5px;
    margin-right: -5px;
    list-style: none;
  }
  @media only screen and (max-width: 575px) {
    .loginBoxArea .fxt-form-content .fxt-login-option ul {
      display: block;
    }
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
    width: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  @media only screen and (max-width: 575px) {
    .loginBoxArea .fxt-form-content .fxt-login-option ul li {
      width: 100%;
    }
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li a {
    padding: 5px 15px;
        color: var(--thm-w-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 50px;
    width: 50px;
    border-radius: 10px;
    font-size: 15px;
  }
  @media only screen and (max-width: 767px) {
    .loginBoxArea .fxt-form-content .fxt-login-option ul li a {
      min-height: 47px;
    }
  }
  @media only screen and (max-width: 575px) {
    .loginBoxArea .fxt-form-content .fxt-login-option ul li a {
      width: 100%;
    }
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li a .fxt-option-icon {
    display: inline-block;
        font-size: 20px;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li a .fxt-option-text {
    display: inline-block;
    display: none;
  }
  @media only screen and (max-width: 575px) {
    .loginBoxArea .fxt-form-content .fxt-login-option ul li a .fxt-option-text {
      display: block;
    }
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.fxt-google a {
    background-color: #CC3333;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.fxt-google a:hover {
    background-color: #af2121;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.fxt-facebook a {
    background-color: #3b5998;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.fxt-facebook a:hover {
    background-color: #263f75;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.fxt-apple a {
    background-color: #132133;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.fxt-apple a:hover {
    background-color: #070e16;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.active {
    width: 100%;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.active a {
    width: 100%;
  }
  .loginBoxArea .fxt-form-content .fxt-login-option ul li.active a .fxt-option-text {
    display: block;
  }

.loginBoxArea  .lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}

.loginBoxArea  .lines .line {
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.loginBoxArea  .lines .line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    z-index: -888;
}

.loginBoxArea  .lines .line:nth-child(1) {
    margin-left: -40%;
}

.loginBoxArea  .lines .line:nth-child(1)::after {
    animation-delay: 1s;
}

.loginBoxArea  .lines .line:nth-child(3) {
    margin-left: 40%;
}

.loginBoxArea  .lines .line:nth-child(3)::after {
    animation-delay: 2s;
}

.loginBoxArea  .lines .line:nth-child(4) {
    margin-left: -20%;
}

.loginBoxArea  .lines .line:nth-child(4)::after {
    animation-delay: 3s;
}

.loginBoxArea  .lines .line:nth-child(5) {
    margin-left: 20%;
}

.loginBoxArea  .lines .line:nth-child(5)::after {
    animation-delay: 4s;
}

@keyframes drop {
    0% {top: -50%; }
    100% {top: 110%; }
}

.login-1 .info{
    max-width: 650px;
}

.login-1  .animated-text h1{
    display: block;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
    background: url(../img/animated-text.png) repeat-y;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: aitf 80s linear infinite;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
}


  .icon-facebook {
      background: #0284c7 !important;
    
  }
  
  .icon-twitter{
      background: #0284c7 !important;
    
  }
  
  .icon-instagram{
      background: #c32aa3 !important;
    
  }
  
  .icon-linkedin{
      background: #0077b5 !important;
      
  }
  
  .icon-youtube {
      background: #FF5722  !important;
     
  }

  .icon-google{
    background: #db4437 !important;
}

.pp{ position: absolute; top:0; left: 0; right: 0;     height: 100%;}
.pp img{ width: 100%; 
    animation-direction: reverse;
    animation-timing-function: ease-in;
   
        animation: uk-kenburns 9s linear infinite;
    animation-duration: 15s;
        object-fit: cover;
            height: 100%;
}

@keyframes uk-kenburns {
  0% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(1);
  }

  100% {
     transform: scale(1.2);
  }
}


  .company-dt{ border: 1px solid #eeeeee; padding: 5px; background: #f8f8f8; }
    .company-dt .company-dt-lt{ width: 60px; padding: 5px; }
    .company-dt h6{ font-size: 15px; font-weight: 600; }
    .company-dt p{ font-size: 13px; margin: 0; padding: 0; line-height: 16px;}

      .company-dt .company-dt-lt img{ width: 100%;     background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 6px 11px 41px -28px #796eb1;
    -webkit-box-shadow: 0px 0px 8px #c3c3c3; }


@media (min-width: 1300px) {
.loginBoxArea .fxt-form-content {width: 37%;}
.loginBoxArea .fxt-heading-content {width: 63%;} 
.top-pd-rs{ padding-top: 100px !important; }
.loginBoxArea .fxt-form-content {padding: 0px 46px;}
}

/* @media only screen and (min-width:1400px) and (max-width:1499px) {

.loginBoxArea .fxt-form-content {width: 45%; }
.loginBoxArea .fxt-heading-content {width: 55%;}
.top-pd-rs{ padding-top: 60px !important; }
} */




@media only screen and (min-width:1160px) and (max-width:1225px) {

}


@media only screen and (max-width: 991px){
.loginBoxArea .fxt-content-wrap {display: block;}
.loginBoxArea {
 
    overflow: hidden;
    min-height: auto;
 
}

.loginBoxArea .fxt-form-content {width: 100%;padding: 0px 10px; height: auto;}

.loginBoxArea .logoPanel {left: 10px;top: 15px;}
.loginAgencyByn { right: 10px;top: 15px;}

.loginBoxArea .fxt-form-content .fxt-main-form {padding: 0;}
.loginBoxArea .fxt-form-content .fxt-main-form {align-items: normal;}
.loginBoxArea .fxt-form-content .fxt-page-title {margin-top: 70px;}

}

.btnViewall{ padding: 5px 10px !important; background: #0284c7 !important; color: #fff !important; font-size: 12px !important; }
.btnViewall:hover{background: #0284c7 !important;color: #fff !important;  }
.allDetailBox{ display: none; border-top:1px solid #dbdbdb; border-bottom:1px solid #dbdbdb; margin-bottom: 20px;}
.allDetailBox.showDetail{ display: block; }

.back-to-sign-in a{
  text-decoration: underline;
  color: #258bca;
  font-weight: 600;
}

.loginBoxArea .fxt-form-content i.eyePass{ right: 5px !important; left: auto!important; cursor: pointer;}

.loginBoxArea .fxt-form-content .position-relative .form-control {
  padding-right: 26px;

}