.zc-portal-notice {
  margin: 0 0 20px;
  border: 1px solid #bedfc6;
  border-radius: 8px;
  background: #effaf2;
  color: #064b1a;
  padding: 14px 16px;
  font-weight: 800;
}

.zc-portal-notice.is-error {
  border-color: #ffc4b0;
  background: #fff1ec;
  color: #9a2700;
}

.zc-portal-auth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.zc-portal-auth--single {
  width: min(100%, 560px);
  grid-template-columns: 1fr;
  margin: 0 auto;
}

.zc-portal-form {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 24px;
  background: #f8f8f8;
}

.zc-portal-form h2,
.zc-portal-dashboard h2,
.zc-portal-dashboard h3 {
  margin: 0;
  color: #050505;
  font-weight: 950;
}

.zc-portal-form label {
  display: grid;
  gap: 7px;
  color: #171717;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.zc-portal-form input {
  min-height: 50px;
  box-sizing: border-box;
  border: 1px solid #d7d7d7;
  border-radius: 7px;
  background: #ffffff;
  color: #050505;
  padding: 0 14px;
  font: inherit;
  text-transform: none;
}

.zc-portal-form button {
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  background: #ff5b1a;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.zc-portal-form__email {
  margin: 0;
  border: 1px solid #dedede;
  border-radius: 7px;
  background: #ffffff;
  color: #050505;
  padding: 15px 14px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.zc-portal-dashboard {
  display: grid;
  gap: 18px;
}

.zc-portal-dashboard header,
.zc-portal-dashboard section {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 24px;
  background: #f8f8f8;
}

.zc-portal-dashboard header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.zc-portal-dashboard header p {
  margin: 0 0 7px;
  color: #ff5b1a;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.zc-portal-dashboard header a,
.zc-portal-products span {
  min-height: 42px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #050505;
  padding: 0 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.zc-portal-dashboard section {
  display: grid;
  gap: 14px;
}

.zc-portal-dashboard section p {
  margin: 0;
  color: #555555;
}

.zc-portal-products,
.zc-portal-requests,
.zc-portal-orders,
.zc-portal-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.zc-portal-products a,
.zc-portal-requests article,
.zc-portal-orders article,
.zc-portal-metrics article {
  min-height: 112px;
  box-sizing: border-box;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #ffffff;
  color: #050505;
  padding: 18px;
  text-decoration: none;
  display: grid;
  gap: 14px;
  align-content: space-between;
}

.zc-portal-products strong,
.zc-portal-requests strong,
.zc-portal-orders strong,
.zc-portal-metrics strong {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 950;
}

.zc-portal-products span {
  width: fit-content;
  background: #ff5b1a;
}

.zc-portal-requests span,
.zc-portal-orders span,
.zc-portal-metrics span {
  color: #666666;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.zc-portal-request-payment {
  width: fit-content;
  min-height: 40px;
  box-sizing: border-box;
  border-radius: 6px;
  padding: 0 16px;
  color: #ffffff;
  background: #ff5b1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zc-portal-request-payment.is-payable:hover {
  color: #ffffff;
  background: #050505;
}

.zc-portal-request-payment.is-paid {
  min-height: 32px;
  border-radius: 999px;
  background: #e2f6e8;
  color: #075b24;
  font-size: 12px;
}

.zc-portal-orders article,
.zc-portal-metrics article {
  min-height: 96px;
}

.zc-portal-orders b {
  color: #050505;
  font-size: 16px;
  font-weight: 950;
}

.zc-portal-metrics article {
  align-content: center;
}

.zc-portal-metrics strong {
  font-size: 30px;
}

@media (max-width: 720px) {
  .zc-portal-auth {
    grid-template-columns: 1fr;
  }

  .zc-portal-dashboard header {
    align-items: start;
    flex-direction: column;
  }
}
