/*
============================================================
CLIENT PORTAL PLACEHOLDER
============================================================
The form is visual only and does not authenticate users.
============================================================
*/

.portal-page {
  min-height: calc(100vh - 7rem);

  display: flex;
  align-items: center;
}


.portal-section {
  width: 100%;

  padding:
    clamp(5rem, 10vw, 10rem)
    0;
}


.portal-grid {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.1fr)
    minmax(310px, 0.9fr);

  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}


.eyebrow {
  margin: 0 0 1.4rem;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  opacity: 0.55;
}


.portal-introduction h1 {
  margin: 0;

  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}


.portal-lead {
  max-width: 24rem;
  margin: 2.25rem 0 0;

  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.48;

  opacity: 0.7;
}


.portal-card {
  padding: clamp(2rem, 5vw, 3.5rem);

  border: 1px solid rgba(20, 30, 25, 0.14);
  border-radius: 1.5rem;

  background: rgba(255, 255, 255, 0.76);

  box-shadow:
    0 1.5rem 4rem rgba(20, 30, 25, 0.08);
}


.portal-form {
  display: grid;
  gap: 1.35rem;
}


.form-field {
  display: grid;
  gap: 0.6rem;
}


.form-field label {
  color: #17251e;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  opacity: 1;
}


.form-field input {
  width: 100%;
  min-height: 3.75rem;

  padding: 0 1rem;

  border: 1px solid rgba(20, 30, 25, 0.2);
  border-radius: 0.75rem;

  background: #ffffff;
  color: #17251e;
  -webkit-text-fill-color: #17251e;

  font: inherit;

  outline: none;
}


.form-field input::placeholder {
  color: #68736d;

  opacity: 1;
}


.form-field input:focus {
  border-color: #2f6a49;

  outline: 3px solid rgba(47, 106, 73, 0.14);
}


.portal-submit {
  min-height: 3.9rem;
  margin-top: 0.35rem;
  padding: 0 1.15rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2rem;

  border: 0;
  border-radius: 0.75rem;

  background: #183d2b;
  color: #ffffff;

  font: inherit;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 180ms ease,
    opacity 180ms ease;
}


.portal-submit:hover {
  transform: translateY(-2px);
}


.portal-status {
  min-height: 1.4em;
  margin: 0.25rem 0 0;

  font-size: 0.88rem;
  line-height: 1.5;

  opacity: 0.58;
}


@media (max-width: 800px) {

  .portal-page {
    min-height: auto;
  }


  .portal-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

}
