header {
  background-color: transparent !important;
  position: absolute !important;
}

body {
  background: #5766cc !important;
  background: radial-gradient(
    circle,
    rgba(87, 102, 204, 1) 0%,
    rgba(47, 61, 162, 1) 100%
  ) !important;
}
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(95vh - 80px);
  gap: 40px;
  background: #5766cc !important;
  background: radial-gradient(
    circle,
    rgba(87, 102, 204, 1) 0%,
    rgba(47, 61, 162, 1) 100%
  ) !important;
}
.left-div {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: inherit;
  justify-content: space-evenly;
  align-items: center;
  gap: 2em;
}
.right-div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-box {
  height: 150px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin-top: 7.5em;
  margin-bottom: 7.5em;
  gap: 2em;
}
.k-button-p {
  display: block;
  margin: 0 auto;
  width: 12em;
  height: 2.5em;
  border-radius: 12px;
  background: #012061;
  color: #fff;
  border: none;
  text-align: center;
  padding: 11px;
  text-decoration: none;
  line-height: 2.5em;
  box-shadow: 0 20px 54px rgba(47, 61, 162, 0.35),
    0 0 4px rgba(47, 61, 162, 0.65);
}
.k-button-c {
  display: block;
  margin: 0 auto;
  width: 12em;
  height: 2.5em;
  border-radius: 12px;
  background: #00e2e0;
  color: #000;
  border: none;
  text-align: center;
  padding: 11px;
  text-decoration: none;
  line-height: 2.5em;
  box-shadow: 0 20px 54px rgba(0, 225, 224, 0.35),
    0 0 4px rgba(0, 225, 224, 0.65);
  font-weight: 500;
}
.k-button-p:hover {
  background: #001748;
}
.k-button-c:hover {
  background: #00d6d3;
}
.buttons-alignment {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}
.top-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.top-buttons button {
  flex: 1;
  padding: 10px 0;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: #e0e0e0;
  cursor: pointer;
  transition: background 0.2s;
}
.top-buttons button.active {
  background: #1976d2;
  color: #fff;
}
.inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.input-group input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
}
.input-group .eye-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #888;
}
.action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.action-buttons button {
  flex: 1;
  padding: 10px 0;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: #1976d2;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.action-buttons button.secondary {
  background: #e0e0e0;
  color: #222;
}
.new-account-btn {
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: #43a047;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.image-row {
  display: flex;
  justify-content: space-evenly;
  gap: 12px;
  width: 100%;
  padding-bottom: 4em;
}
.qr-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  width: 60%;
  justify-content: space-evenly;
  margin-top: 5em;
}
.qr-container-pos {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 60%;
  justify-content: space-evenly;
  margin-bottom: 5em;
  gap: 1em;
}
.login-box-pos {
  height: 150px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 1.5em;
}

.forofor-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 60%;
  justify-content: space-evenly;
  margin-top: 5em;
}
.qr-title {
  color: white;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.qr-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.qr-part {
  display: flex;
  flex-direction: row;
  gap: 5em;
  min-width: 50em;
  align-items: center;
  justify-content: center;
}
.div-pos {
  display: flex;
  flex-direction: row;
  margin-top: 10%;
  gap: 2em;
  align-items: center;
}
.pos-divider {
  border-left: 0.1px solid rgb(165, 165, 165);
  height: 100%;
}
@media (max-width: 1024px) {
  .image-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    justify-items: center;
    gap: 12px;
    width: 100%;
  }
  .login-box {
    width: auto;
    height: 230px;
  }
  .login-box-pos {
    width: auto;
    height: 230px;
  }
  .qr-container {
    width: 100%;
  }
  .left-div {
    gap: 3em;
            width: 100%;
  }
  .qr-div {
    /* max-width: 150px; */
  }
  .qr-container-pos {
    width: 90%;
    gap: 2em;
  }
  .div-pos {
    flex-direction: column;
  }
  .pos-divider{
        width: 90%;
        height: 1px;
        border-top: 1px solid rgb(165, 165, 165);
  }
  .qr-part{
        min-width: 98%;
        gap: 4em;
  }
  .image-row{
            padding-bottom: 3em;
  }
}
