/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

/*---------------------------------------------*/
a {
  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;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}


/*---------------------------------------------*/
.wrap-login100 input {
  outline: none;
  border: 1px solid #aaaaaa;
  color: #dcdcdc !important;
  background-color: #ffffff00 !important;
}

.wrap-login100 input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ffffff !important;
}

input {
  outline: 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;
}


label {
  display: block;
  margin: 0;
}

.logo-container {
  position: fixed;
  top: 20px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
}

[data-bs-theme="light"] .logo-container {
  color: #111827;
}

.black-part {
  background: #222222;
  min-height: 100vh;
  width: 100%;
}

.white-part {
  width: 50%;
  min-height: 100vh;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Raleway-SemiBold;
  font-size: 13px;
  color: #555555;
  line-height: 1.4;
  text-transform: uppercase;
}

.txt2 {
  font-size: 13px;
  color: #999999;
  line-height: 1.4;
}

.txt3 {
  font-size: 13px;
  color: #555555;
  line-height: 1.4;
}

.cus-txt3 {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}

.light-green {
  color: #FFD60A;
}

.gradient-color {
  background: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to right, #27aadc, #2871de);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.sm-text {
  font-size: 15px !important;
}

.mar-l-5 {
  margin-left: 5px;
}

.mar-l-10 {
  margin-left: 10px;
}

/*//////////////////////////////////////////////////////////////////
[ 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;
  background-color: #090909;
}

.blur-div {
  position: absolute;
  border-radius: 50%;
  top: 75px;
  left: 50%;
  width: 1280px;
  max-width: 100%;
  transform: translateX(-50%);
  height: 158px;
  background: linear-gradient(91deg, #29025B 47.22%, #EAAFFF 110.53%);
  filter: blur(100px);
  z-index: 0;
  user-select: none;
  content: "";
  pointer-events: none;
}

.wrap-login100 {
  position: relative;
  width: 560px;
  background: #ffffff0d;
  border-radius: 10px;
  padding: 35px 60px;
  z-index: 1;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  color: #ffffff;
  margin: 0px 15px;
}


/*==================================================================
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  font-size: 30px;
  color: #ffffff;
  line-height: 1.2;
  text-align: left;
  font-weight: bold;
  width: 100%;
  display: block;
}


/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}


/*---------------------------------------------*/
.input100 {
  color: #555555;
  line-height: 1.2;
  font-size: 18px;

  display: block;
  width: 100%;
  background: transparent;
  height: 55px;
  padding: 0 25px 0 25px;
}

/*------------------------------------------------------------------
[ Focus Input ]*/

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #57b846;
  border-radius: 3px;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus+.focus-input100 {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.eff-focus-selection {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*---------------------------------------------*/
.btn-show-pass {
  font-size: 15px;
  color: #999999;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 12px;
  padding: 0 5px;
  cursor: pointer;
  -webkit-transition: background 0.4s;
  -o-transition: background 0.4s;
  -moz-transition: background 0.4s;
  transition: background 0.4s;
}

.btn-show-pass:hover {
  color: #57b846;
}

.btn-show-pass.active {
  color: #57b846;
}

/*==================================================================
[ Restyle Checkbox ]*/

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-size: 13px;
  color: #999999;
  line-height: 1.4;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #e6e6e6;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked+.label-checkbox100::before {
  color: #57b846;
}

.block {
  display: block !important;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.container-login100-form-btn a {
  padding-left: 0px;
  padding-right: 0px;
}

.login100-form-btn {
  font-size: 16px;
  color: #fff;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 150px;
  height: 46px;
  background: #2871de;
  border-radius: 27px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background: #a741ea;
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate .btn-show-pass {
  visibility: hidden;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 3px;
  padding: 4px 25px 5px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  color: #c80000;
  font-size: 14px;
  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: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#hint_id_password {
  display: none;
}

.form-group {
  font-size: 14px;
}

.form-group label {
  padding-bottom: 5px;
}

.pass-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pass-label>a {
  font-size: 13px !important;
  padding: 0px;
}

.divider>.h-line {
  flex: 1;
  height: 1px;
  border-bottom: 1px solid #C8C8C8 !important;
}

.divider>span {
  padding: 0px 10px 5px 10px;
  font-size: 13px;
}

.third-login {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 5px;
}

.third-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #B4B4B4;
  border-radius: 5px;
  padding: 5px 10px;
  color: #ffffff;
}

.third-button:hover {
  border: 1px solid #ffffff;
  text-decoration: none;
  color: #ffffff;
}

.third-button>span {
  padding: 5px 0px 5px 10px;
}


.h-line {
  height: 1px;
  border-bottom: 1px solid #BBBBBB !important;
}



details {
  border-color: #CACFD8;
  padding-bottom: 10px;
  margin: 15px 0px 10px 0px;
}

details>summary {
  list-style-type: '';
  display: flex;
  justify-content: space-between;
}

details p {
  width: 60%;
}

details[open] svg {
  transition: 0.2s;
}

details[open] svg {
  transform: rotate(180deg);
}

.bold-text {
  font-weight: bold;
}

.gray-text {
  color: #9598A6;
}

.errorlist {
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #57b846;
}

.form-control {
  font-size: 14px;
}

.term-text {
  font-size: 12px;
  padding: 0px 0px 10px;
  color: #e8e8e8;
  font-weight: 100;
}


.term-text a {
  color: #439b73;
  font-size: 12px !important;
}

/* Top-right controls: theme toggle + lang switcher */
.login-page-controls {
  position: fixed;
  top: 16px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
}

.login-page-controls .theme-toggle-item {
  margin: 0;
  padding: 6px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}

.login-page-controls .theme-toggle-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ═══════════════════════════════════════
   LIGHT MODE
   ═══════════════════════════════════════ */
[data-bs-theme="light"] .container-login100 {
  background-color: #f0f2f5;
}

[data-bs-theme="light"] .blur-div {
  background: linear-gradient(90deg, #beff8380 47.22%, #ffc107 110.53%);
  opacity: 1;
}

[data-bs-theme="light"] .wrap-login100 {
  background: #ffffff63;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  color: #111827;
  border: 1px solid #b5b5b5;
}

[data-bs-theme="light"] .login100-form-title {
  color: #111827;
}

[data-bs-theme="light"] .cus-txt3,
[data-bs-theme="light"] .sm-text,
[data-bs-theme="light"] .wrap-login100 label,
[data-bs-theme="light"] .form-group label,
[data-bs-theme="light"] .form-check-label {
  color: #374151;
}

[data-bs-theme="light"] .wrap-login100 input {
  color: #111827 !important;
  background-color: #f9fafb !important;
  border-color: #d1d5db;
}

[data-bs-theme="light"] .wrap-login100 input:focus {
  border-color: #2871de !important;
}

[data-bs-theme="light"] .wrap-login100 input::placeholder {
  color: #9ca3af !important;
}

[data-bs-theme="light"] .divider>.h-line,
[data-bs-theme="light"] .h-line {
  border-bottom-color: #d1d5db !important;
}

[data-bs-theme="light"] .divider>span {
  color: #6b7280;
}

[data-bs-theme="light"] .third-button {
  border-color: #d1d5db;
  color: #374151;
}

[data-bs-theme="light"] .third-button:hover {
  border-color: #2871de;
  color: #2871de;
}

[data-bs-theme="light"] .term-text {
  color: #374151;
}

[data-bs-theme="light"] .black-part {
  background: #f0f2f5;
}

[data-bs-theme="light"] .login-page-controls .theme-toggle-item {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.65);
}

[data-bs-theme="light"] .login-page-controls .theme-toggle-item:hover {
  background: rgba(0, 0, 0, 0.10);
  color: #111827;
}

/* Light mode overrides for language switcher */
[data-bs-theme="light"] .login-page-controls .lang-switcher-dark.lang-switcher {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

[data-bs-theme="light"] .login-page-controls .lang-switcher-dark .lang-btn {
  color: rgba(0, 0, 0, 0.65);
}

[data-bs-theme="light"] .login-page-controls .lang-switcher-dark .lang-btn:hover {
  background: rgba(0, 0, 0, 0.10);
  color: #111827;
}

[data-bs-theme="light"] .login-page-controls .lang-switcher-dark .lang-btn.lang-active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}