/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

:root{
  --primary-color: #9687b8;
  --secondary-color: #4F037E;
}

@font-face {
  font-family: Poppins-Regular;
  src: url('/fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('/fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('/fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('/fonts/montserrat/Montserrat-Bold.ttf'); 
}


  /*//////////////////////////////////////////////////////////////////
  [ RESTYLE TAG ]*/
  
  * {
      margin: 0px; 
      padding: 0px; 
      box-sizing: border-box;
  }
  
  body, html {
      height: 100%;
      font-family: Poppins-Regular, sans-serif;
  }

  header {
    background-color: #9996CB;
    background-image: url("/img/frame.png");
    background-position: center center;
    background-size: cover;
    padding: 5% 20% 5% 20%;
    height: 28%;
  }

  .main-content {
    position: relative;
    min-height: 100%;
    width: 50%;
  }

  .main-content .content {
    padding: 0px !important;
    min-height: calc(100% - 123px);
    margin-top: -25vh;
    overflow: hidden;
    width: 100%;
    max-width: unset;
  }
  
  /*---------------------------------------------*/
  a {
      font-family: Poppins-Regular;
      font-size: 14px;
      line-height: 1.7;
      color: #666666;
      margin: 0px;
      transition: all 0.4s;
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
  }
  
  a:focus {
      outline: none !important;
  }
  
  a:hover {
      text-decoration: none;
    color: var(--primary-color);
  }
  
  /*---------------------------------------------*/
  h1,h2,h3,h4,h5,h6 {
      margin: 0px;
  }
  
  p {
      font-family: Poppins-Regular;
      font-size: 14px;
      line-height: 1.7;
      color: #666666;
      margin: 0px;
  }
  
  ul, li {
      margin: 0px;
      list-style-type: none;
  }

  // CAPTCHA

  .captcha-area{
    margin-top: 4rem;
    display: flex;
    height: 65px;
    margin: 30px 0 20px;
    align-items: center;
    justify-content: space-between;
  }
  
  .captcha-area .captcha-img{
    user-select: none;
    background: #000;
    border-radius: 20px;
    align-items:center;
  }
  .captcha-img img{
    width: 22%;
    height: 45px;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0.95;
    vertical-align: center;
    align-items: center;
  }
  .captcha-img .captcha{
    position: absolute;
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
    transform: translate(-120%, -50%);
    text-shadow: 0px 0px 2px #b1b1b1;
    font-family: 'Noto Serif', serif;
    user-select: none;
  }

  .reload-btn{
    cursor: pointer;
    border-radius: 5px;
    /* border:none; */
    width:  5%;
    padding-top: 7px;
    padding-bottom: 11px;
    margin-left: 5px;
    color: #fff;
    transition: 0.5s;
    background: linear-gradient(110deg, var(--c1, rgba(153,150,203,1)), var(--c2, rgba(184,181,223,1)) 51%, var(--c1, rgba(153,150,203,1))) var(--x, 0)/ 200%;
  }
  .reload-btn:hover, .reload-btn2:hover{
    --x: 100%; 
  }
  .reload-btn i, .reload-btn2 i{
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  .reload-btn:hover i, .reload-btn2:hover i{
    transform: rotate(15deg);
  }

  .status-text{
    display: none;
    font-size: 13px;
    text-align: left;
    padding-bottom: 1rem;
  }

  @media (max-width: 926px) {
    .captcha-img .captcha{
      margin-top: 1.5rem;
      font-size: 16px;
      left: 45%;
    }
  
    .reload-btn{
      padding-top: 8px;
      padding-bottom: 10px;
    }
  
    @media(max-width: 425px) {
      .captcha-img .captcha{
        left:55%;
      }
    }

  /* END CAPTCHA */
  
  
  /*---------------------------------------------*/
  input {
      outline: none;
      border: none;
  }
  
  textarea {
    outline: none;
    border: none;
  }
  
  textarea:focus, input:focus {
    border-color: transparent !important;
  }
  
  input:focus::-webkit-input-placeholder { color:transparent; }
  input:focus:-moz-placeholder { color:transparent; }
  input:focus::-moz-placeholder { color:transparent; }
  input:focus:-ms-input-placeholder { color:transparent; }
  
  textarea:focus::-webkit-input-placeholder { color:transparent; }
  textarea:focus:-moz-placeholder { color:transparent; }
  textarea:focus::-moz-placeholder { color:transparent; }
  textarea:focus:-ms-input-placeholder { color:transparent; }
  
  input::-webkit-input-placeholder { color: #999999; }
  input:-moz-placeholder { color: #999999; }
  input::-moz-placeholder { color: #999999; }
  input:-ms-input-placeholder { color: #999999; }
  
  textarea::-webkit-input-placeholder { color: #999999; }
  textarea:-moz-placeholder { color: #999999; }
  textarea::-moz-placeholder { color: #999999; }
  textarea:-ms-input-placeholder { color: #999999; }
  
  /*---------------------------------------------*/
  button {
      outline: none !important;
      border: none;
      background: transparent;
  }
  
  button:hover {
      cursor: pointer;
  }
  
  iframe {
      border: none !important;
  }
  
  
  /*//////////////////////////////////////////////////////////////////
  [ Utility ]*/
  .txt1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.5;
    color: #999999;
  }
  
  .txt2 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
  }
  
  
  /*//////////////////////////////////////////////////////////////////
  [ login ]*/
  
  .limiter {
    width: 100%;
    margin: 0 auto;
  }
  
  .container-login100 {
    width: 100%;  
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #9053c7;
    background: -webkit-linear-gradient(-135deg, #c850c0, #4158d0);
    background: -o-linear-gradient(-135deg, #c850c0, #4158d0);
    background: -moz-linear-gradient(-135deg, #c850c0, #4158d0);
    background: linear-gradient(-135deg, var(--secondary-color), var(--primary-color));
  }
  
  .wrap-login100 {
    width: 960px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 95px 130px 95px 95px;
  }
  
  /*------------------------------------------------------------------
  [  ]*/
  .login100-pic {
    width: 316px;
  }
  
  .login100-pic img {
    max-width: 100%;
  }

  .text-bottom {
    text-align:left;
  }
  
  
  /*------------------------------------------------------------------
  [  ]*/
  .login100-form {
    width: 290px;
  }
  
  .login100-form-title {
    font-family: Poppins-Bold;
    font-size: 24px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
  
    width: 100%;
    display: block;
    padding-bottom: 54px;
  }
  
  .sub-title {
    font-size: 20px;
    font-family: Poppins-Medium;
    margin-bottom: 1rem;
  }
  
  /*---------------------------------------------*/
  .wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
  }
  
  .input100 {
    font-family: Poppins-Medium;
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
  
    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 45px;
    border-radius: 25px;
    padding: 0 30px 0 68px;
  }

  .input100-textarea {
    font-family: Poppins-Medium;
    font-size: 15px;
    color: #666666;
  
    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 90px;
    border-radius: 5px;
    padding: 10px 30px 0 68px;
  }
  
  
  /*------------------------------------------------------------------
  [ Focus ]*/
  .focus-input100 {
    display: block;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    color: var(--primary-color);
  }
  
  .input100:focus + .focus-input100 {
    -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
    animation: anim-shadow 0.5s ease-in-out forwards;
  }
  
  @-webkit-keyframes anim-shadow {
    to {
      box-shadow: 0px 0px 70px 25px;
      opacity: 0;
    }
  }
  
  @keyframes anim-shadow {
    to {
      box-shadow: 0px 0px 70px 25px;
      opacity: 0;
    }
  }
  
  .symbol-input100 {
    font-size: 15px;
  
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 35px;
    pointer-events: none;
    color: #666666;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .input100:focus + .focus-input100 + .symbol-input100 {
    color: var(--primary-color);
    padding-left: 28px;
  }
  
  /*------------------------------------------------------------------
  [ Button ]*/
  .container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
  }
  
  .login100-form-btn {
    font-family: Poppins-Medium;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
  
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: var(--primary-color);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    margin-bottom: 1rem;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .login100-form-btn:hover {
    background: var(--secondary-color);
  }
  
  
  
  /*------------------------------------------------------------------
  [ Responsive ]*/  
  @media (max-width: 1554px) {
    .main-content .content {
      margin-top: -20px;
    }
  } 

  @media only screen and (max-width: 1024px) {
    .captcha-img img{
      width: 40% !important;
    }
    .captcha-img .captcha{
      transform: translate(-250%, -50%);
    }
    .reload-btn{
      width:  10%;
    }
  } 

  @media only screen and (max-width: 1280px) {
    .main-content .content {
      margin-top: -50px;
    }

    header {
      padding: 3% 5% 15% 5%;
      height: 40%;
    }
  } 
  
  @media (max-width: 992px) {
    .wrap-login100 {
      padding: 177px 90px 33px 85px;
    }

    header {
      padding: 3% 5% 10% 5%;
      height: 30%;
    }

    .main-content {
      width: 90%;
    }
  
    .main-content .content {
      margin-top: -250px;
    }
  
    .login100-pic {
      width: 35%;
    }
  
    .login100-form {
      width: 50%;
    }

    .captcha-img .captcha{
      font-size: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .wrap-login100 {
      padding: 100px 80px 33px 80px;
    }
  
    .login100-pic {
      display: none;
    }

    .main-content .content {
      margin-top: -180px;
    }
  
    .login100-form {
      width: 100%;
    }

    .captcha-img img{
      width: 30%;
    }
    .captcha-img .captcha{
      transform: translate(-250%, -50%);
    }
    .reload-btn{
      width:  5%;
    }
  }
  
  @media (max-width: 576px) {
    .wrap-login100 {
      padding: 100px 15px 33px 15px;
    }
    .captcha-img img{
      width: 40%;
    }
    .captcha-img .captcha{
      transform: translate(-180%, -50%);
    }
    .reload-btn{
      width:  10%;
    }

    header {
      padding: 3% 5% 5% 5%;
      height: 30%;
    }
  }

  @media (max-width: 428px) {
    header {
      padding: 3% 5% 5% 5%;
      height: 40%;
    }

    .main-content .content {
      margin-top: -220px;
    }
  }
  
  
  /*------------------------------------------------------------------
  [ Alert validate ]*/
  
  .validate-input {
    position: relative;
  }
  
  .alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: white;
    border: 1px solid #c80000;
    border-radius: 13px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
    pointer-events: none;
  
    font-family: Poppins-Medium;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
  
    visibility: hidden;
    opacity: 0;
  
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  
  .alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 13px;
  }
  
  .alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
  }
  
  @media (max-width: 992px) {
    .alert-validate::before {
      visibility: visible;
      opacity: 1;
    }
  }