.login-body {
  min-height: 100vh;
  background: #0A0A0A;
}

.login-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-brand-side {
  display: none;
}

.login-form-side {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: #0A0A0A;
}

.login-content {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-content h2 {
  font-size: 2.15rem;
  font-weight: 800;
  color: #30FF00;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.login-welcome {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.login-subtext {
  color: #bdbdbd;
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 1rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 0 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.input-group:focus-within {
  border-color: rgba(48, 255, 0, 0.45);
  background: #111111;
  box-shadow: 0 0 0 1px rgba(48, 255, 0, 0.15);
}

.input-icon {
  width: 20px;
  height: 20px;
  color: #AFAFAF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.input-group input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent !important;
  color: #F5F5F5 !important;
  font-size: 16px;
  min-height: 56px;
  box-shadow: none !important;
}

.input-group input:focus,
.input-group input:active,
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover,
.input-group input:-webkit-autofill:focus {
  background: transparent !important;
  color: #F5F5F5 !important;
  -webkit-text-fill-color: #F5F5F5 !important;
  box-shadow: none !important;
}

.input-group input::placeholder {
  color: #8c8c8c;
}

.login-button {
  margin-top: 8px;
  width: 100%;
  min-height: 56px;
  background: #30FF00;
  color: #0A0A0A;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 16px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.login-button:hover {
  opacity: 0.94;
}

.login-button:active {
  transform: scale(0.99);
}

.login-message {
  min-height: 20px;
  color: #30FF00;
  font-size: 0.95rem;
  margin-top: 4px;
}

@media (min-width: 961px) {
  .login-layout {
    flex-direction: row;
  }

  .login-brand-side {
    width: 50%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #30FF00;
    padding: 48px;
  }

  .brand-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-wrap h1 {
    color: #0A0A0A;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.04em;
  }

  .login-form-side {
    width: 50%;
    padding: 48px;
  }

  .login-content {
    max-width: 440px;
  }

  .login-content h2 {
    display: none;
  }

  .login-welcome {
    font-size: 2.6rem;
  }

  .login-subtext {
    font-size: 1.05rem;
  }
}
