body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #3d2a24;
  overflow-x: hidden;
}
.background-binary {
  position: fixed;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  top: 0;
  left: 0;
  /* background-image: url("img/bg.png"); */
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-left {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-form {
  display: flex;
  flex-direction: column;
  width: 550px;
  gap: 28px;
}
.input-group {
  position: relative;
}
.input {
  width: 100%;
  background: none;
  color: white;
  border: 3px solid #fbb532;
  border-radius: 27px;
  padding: 17px 24px;
  font-size: 20px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}
.input::placeholder {
  color: #d8d7d7;
  font-size: 18px;
}
.otp-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}
.send-otp-label {
  color: #fbb532;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #fbb532;
  cursor: pointer;
  transition: color 0.2s;
}
.send-otp-label:hover {
  color: #f68d2a;
}
.status-row {
  display: flex;
  gap: 12px;
  font-size: 15px;
  margin-top: 6px;
}
.status {
  display: none;
}
.green {
  color: #00ff7f;
}
.red {
  color: #ff4b4b;
}
.btn-login {
  background: #fbb532;
  color: #313131;
  font-size: 20px;
  font-weight: 500;
  border: none;
  border-radius: 27px;
  padding: 14px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-login:hover {
  background: #ffca47;
}
.forgot-row {
  display: flex;
  justify-content: flex-end;
}
.forgot-password {
  color: #fbb532;
  font-size: 16px;
  text-decoration: underline;
}
.divider {
  width: 3px;
  background: linear-gradient(to bottom, #fff 0%, #a69e9e20 100%);
  height: 83vh;
  border-radius: 2px;
  margin: 0 3vw;
}
.login-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 340px;
  margin-left: 2vw;
}
.portal-title {
  color: #fbb532;
  font-size: 35px;
  font-weight: 700;
}
.login-title {
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 30px;
}
.signup-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.signup-question {
  color: #fbb532;
  font-size: 18px;
}
.signup-link {
  color: #b7ee7d;
  font-weight: 700;
  cursor: pointer;
}
.logo-img {
  width: 240px;
  margin-top: auto;
}

@media (max-width: 960px) {
  .container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .divider {
    width: 60%;
    height: 2px;
    margin: 40px 0;
  }
  .login-right {
    align-items: center;
    text-align: center;
  }
}
