.company-auth-layout {
  min-height: 100vh;
  background: #ffffff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: #111827;
}

.company-auth-frame {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

.company-auth-title {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.company-auth-subtitle {
  color: #6b7280;
  margin-bottom: 1.75rem;
}

.company-auth-left {
  padding: 2.25rem 1.5rem;
  background: #ffffff;
}

.company-auth-left__inner {
  max-width: 520px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.company-auth-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.company-auth-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.company-auth-logo__icon {
  width: auto;
  height: 45px;
}

.company-auth-logo__text {
  font-size: 1.2rem;
  color: #111827;
}

.company-auth-home-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
}

.company-auth-home-link:hover {
  color: #111827;
  text-decoration: underline;
}

.company-auth-form-wrap {
  flex: 1;
}

.company-auth-layout .form-label {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.company-auth-layout .form-control {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.85rem 0.95rem;
  font-size: 1rem;
}

.company-auth-layout .form-control:focus {
  border-color: #6d28d9;
  box-shadow: 0 0 0 0.2rem rgba(109, 40, 217, 0.15);
}

.company-auth-client-id {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.company-auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0.25rem 0 1rem;
}

.company-auth-submit {
  width: 100%;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-weight: 800;
  background: #5b3cc4;
  border-color: #5b3cc4;
}

.company-auth-submit:hover {
  background: #4b2fb0;
  border-color: #4b2fb0;
}

.company-auth-footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f3f4f6;
}

.company-auth-right {
  display: none;
  background: #a78bfa;
}

.company-auth-right__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.company-auth-illustration {
  width: 100%;
  max-width: 520px;
  height: auto;
  opacity: 0.95;
  filter: saturate(0.9) contrast(1.05);
}

@media (min-width: 992px) {
  .company-auth-frame {
    grid-template-columns: 520px 1fr;
  }

  .company-auth-left {
    padding: 3rem 3rem;
  }

  .company-auth-right {
    display: block;
  }
}
