:root {
  color: #151821;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.login-layout {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
}

.login-brand {
  background: #062945;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(36px, 6vw, 76px);
  position: relative;
}

.login-brand::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.login-brand > * {
  position: relative;
  z-index: 1;
}

.login-prodash-logo {
  height: auto;
  max-width: 260px;
  width: 62%;
}

.login-eyebrow {
  color: #0aaef0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.login-brand h1 {
  font-size: clamp(4.5rem, 10vw, 8rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
}

.login-brand-copy {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 22px 0 0;
}

.login-environment {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
}

.login-access {
  align-items: center;
  background: #f7f9fd;
  display: flex;
  justify-content: center;
  padding: 32px;
}

.login-form-wrap {
  max-width: 440px;
  width: 100%;
}

.login-product {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 64px;
}

.login-product-mark {
  align-items: center;
  background: #0f9f9a;
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.login-product strong,
.login-product small {
  display: block;
}

.login-product strong {
  font-size: 1.02rem;
}

.login-product small {
  color: #667085;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 2px;
  text-transform: uppercase;
}

.login-heading h2 {
  font-size: clamp(2rem, 4vw, 2.65rem);
  letter-spacing: 0;
  margin: 0 0 34px;
}

#login-form {
  display: grid;
  gap: 10px;
}

#login-form label {
  font-size: 0.86rem;
  font-weight: 800;
  margin-top: 8px;
}

#login-form input {
  background: white;
  border: 1px solid #cfd8e6;
  border-radius: 7px;
  color: #151821;
  font: inherit;
  min-height: 50px;
  outline: none;
  padding: 0 14px;
}

#login-form input:focus {
  border-color: #0f9f9a;
  box-shadow: 0 0 0 3px rgba(15, 159, 154, 0.13);
}

#login-form button {
  background: #151821;
  border: 0;
  border-radius: 7px;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  margin-top: 18px;
  min-height: 50px;
}

#login-form button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.login-error {
  background: #fff0f1;
  border: 1px solid #f2c5ca;
  border-radius: 7px;
  color: #a52734;
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 8px 0 0;
  padding: 12px;
}

.login-support {
  color: #667085;
  font-size: 0.82rem;
  margin: 26px 0 0;
}

.login-support a {
  color: #087774;
  font-weight: 800;
}

@media (max-width: 820px) {
  .login-layout {
    grid-template-columns: 1fr;
  }

  .login-brand {
    min-height: 230px;
    padding: 28px;
  }

  .login-prodash-logo {
    max-width: 150px;
  }

  .login-brand h1 {
    font-size: 4rem;
  }

  .login-brand-copy,
  .login-environment {
    display: none;
  }

  .login-access {
    align-items: flex-start;
    padding: 36px 22px 56px;
  }

  .login-product {
    margin-bottom: 42px;
  }
}
