@font-face {
  font-family: "Light";
  src: local("HelveticaNeue Light"),
      url("https://insolare.z2o.ai/fonts/HelveticaNeue Light.ttf") format("truetype");
}

html, body {
  height: 100%;
  margin: 0;
}

.left-side {
  background-image: url('../img/login_bg.png');
  background-size: cover;
  background-position: center;
  left: 0;
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
}

.right-side {
  right: 0;
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
}

/* Single definition — no duplicates */
.login-box {
  width: 100%;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.form-control {
  width: 100% !important;
}

sup {
  font-size: 14px;
  top: -1.0em;
}

.badge-custom {
  background-color: #ffc000;
  color: white;
  font-weight: 600;
  padding: 4px 10px;
  font-size: 0.9rem;
  margin-left: 10px;
  border: 2px solid black;
}

.fs_42 { font-size: 42px; }
form div { text-align: left; }
.w_53 { /*width: 53%; */ width: 45%; }
.w_70 { width: 70%; }

.forgot_password {
  text-align: right;
  font-size: 12px;
  color: #1F7BFE;
  font-weight: 500;
  width: 100%;
  margin-bottom: 0;
}

/* Single definition — no duplicates */
.btn-signin {
  background: #6575E0;
  color: white;
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-signin:hover {
  background: #ffc000;
  color: white;
}

/* Captcha — single clean definition */
.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.captcha-wrapper span {
  flex: 1;
  min-width: 0;
}

.captcha-wrapper img {
  width: 100%;
  height: 52px;
  object-fit: fill;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  display: block;
}

.btn-refresh {
  flex-shrink: 0;
  width: 40px;
  height: 52px;
  background: #f5f5f5;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.2s, color 0.2s;
}

.btn-refresh:hover {
  background: #6575E0;
  color: #fff;
  border-color: #6575E0;
}

@media (max-width: 900px) {
  .left-side  { width: 60%; }
  .right-side { width: 40%; }
}

@media (max-width: 500px) {
  .left-side  { display: none; }
  .right-side { width: 100%; }
}