:root {
  --navy-dark: #0a1628;
  --navy-mid: #0d2847;
  --navy-light: #0a1e38;
  --green: #00ae42;
  --cellhire-blue: #043f96;

  --text-heading: #111827;
  --text-body: #4b5563;
  --text-muted: #7a90ad;
  --text-light: #8fa3bf;
  --text-placeholder: #98a8be;

  --bg-page: #f3f5f8;
  --bg-card: #ffffff;
  --bg-input: #f7f9fb;
  --border-input: #d8dee8;
  --border-tile: #e8ecf2;

  --panel-text-light: #5a7a9e;

  --card-radius: 16px;
  --input-radius: 8px;
  --btn-radius: 50px;
  --tile-radius: 14px;

  --font-display: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk Display", "neue-haas-grotesk-display", "Helvetica Neue", Arial, sans-serif;
  --font-text: "Neue Haas Grotesk Text Pro", "Neue Haas Grotesk Text", "neue-haas-grotesk-text", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body.theme-cellhire {
  font-family: var(--font-text);
  background-color: var(--bg-page);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.theme-cellhire .auth-card {
  display: flex;
  width: 100%;
  max-width: 960px;
  min-height: 560px;
  background: var(--bg-card);
  border-radius: var(--card-radius);
  box-shadow: 0 10px 50px rgba(10, 22, 40, 0.15);
  overflow: hidden;
}

.theme-cellhire .auth-panel {
  position: relative;
  width: 42%;
  min-width: 320px;
  background: linear-gradient(160deg, rgba(10, 22, 40, 0.96) 0%, rgba(13, 40, 71, 0.96) 50%, rgba(10, 30, 56, 0.96) 100%), url("/img/login/cellhire/constellation.svg");
  background-size: cover;
  background-position: center;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.theme-cellhire .auth-shell__brand-content {
  position: relative;
  z-index: 1;
}

.theme-cellhire .auth-panel__logo {
  margin-bottom: 40px;
}

.theme-cellhire .auth-panel__logo img,
.theme-cellhire .auth-panel__logo svg {
  height: 56px;
  width: auto;
}

.theme-cellhire .auth-shell__brand-tag {
  display: none;
}

.theme-cellhire .auth-panel__headline {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
}

.theme-cellhire .auth-panel__description {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 32px;
}

.theme-cellhire .auth-panel__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-cellhire .auth-panel__features li {
  font-size: 0.8125rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

.theme-cellhire .auth-panel__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-light);
}

.theme-cellhire .auth-panel__user-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(7, 18, 34, 0.6);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 24px;
}

.theme-cellhire .auth-panel__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #132744;
  border: 1px solid #1e3a5e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.theme-cellhire .auth-panel__user-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #ffffff;
}

.theme-cellhire .auth-panel__user-email {
  font-size: 0.72rem;
  color: var(--panel-text-light);
  margin-top: 2px;
}

.theme-cellhire .auth-panel__signout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #ffffff;
  text-decoration: none;
  margin-top: 20px;
}

.theme-cellhire .auth-form,
.theme-cellhire .portal-section,
.theme-cellhire .auth-page {
  flex: 1;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.theme-cellhire .auth-form__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  margin-bottom: 24px;
}

.theme-cellhire .auth-form__back svg {
  width: 12px;
  height: 12px;
}

.theme-cellhire .auth-form__label,
.theme-cellhire .portal-section__label,
.theme-cellhire .auth-page__eyebrow {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.theme-cellhire .auth-form__heading,
.theme-cellhire .portal-section__heading,
.theme-cellhire .auth-page__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.3px;
  margin: 0 0 8px;
}

.theme-cellhire .portal-section__heading {
  font-size: 1.5rem;
}

.theme-cellhire .auth-form__subtitle,
.theme-cellhire .portal-section__subtitle,
.theme-cellhire .auth-page__description,
.theme-cellhire .auth-message-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  margin: 0 0 32px;
  line-height: 1.5;
}

.theme-cellhire .field-group,
.theme-cellhire .auth-form-card__field {
  margin-bottom: 20px;
}

.theme-cellhire .field-group__label,
.theme-cellhire .auth-form-card__field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.theme-cellhire .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.theme-cellhire .input-wrapper__icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: var(--text-placeholder);
  pointer-events: none;
}

.theme-cellhire .input-wrapper__toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-placeholder);
  padding: 4px;
}

.theme-cellhire .input-field,
.theme-cellhire .auth-form-card .form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  font-family: var(--font-text);
  font-size: 0.875rem;
  color: var(--text-heading);
  background: var(--bg-input);
  border: 1.2px solid var(--border-input);
  border-radius: var(--input-radius);
  outline: none;
  box-shadow: none;
}

.theme-cellhire .auth-form-card .form-control[readonly],
.theme-cellhire .input-field[readonly] {
  color: var(--text-heading);
}

.theme-cellhire .input-field::placeholder,
.theme-cellhire .auth-form-card .form-control::placeholder {
  color: var(--text-placeholder);
}

.theme-cellhire .auth-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.theme-cellhire .checkbox-wrapper,
.theme-cellhire .auth-form-card__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 0;
}

.theme-cellhire .checkbox-wrapper input[type="checkbox"],
.theme-cellhire .auth-form-card__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1.3px solid #c8d0dc;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
}

.theme-cellhire .checkbox-wrapper input[type="checkbox"]:checked,
.theme-cellhire .auth-form-card__checkbox input[type="checkbox"]:checked {
  background-color: var(--navy-mid);
  border-color: var(--navy-mid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.theme-cellhire .checkbox-wrapper span,
.theme-cellhire .auth-form-card__checkbox span {
  font-size: 0.8125rem;
  color: var(--text-body);
}

.theme-cellhire .auth-form__forgot,
.theme-cellhire .auth-form-card__actions a {
  font-size: 0.8125rem;
  color: var(--text-heading);
  font-weight: 500;
  text-decoration: none;
}

.theme-cellhire .btn,
.theme-cellhire .auth-form-card__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: var(--btn-radius);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
}

.theme-cellhire .btn--navy,
.theme-cellhire .auth-form-card__submit,
.theme-cellhire .btn.btn-primary {
  background-color: var(--cellhire-blue);
  color: #ffffff;
}

.theme-cellhire .btn--navy:hover,
.theme-cellhire .auth-form-card__submit:hover,
.theme-cellhire .btn.btn-primary:hover {
  background-color: #03357d;
  color: #ffffff;
}

.theme-cellhire .auth-form__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.6875rem;
  color: var(--text-placeholder);
}

.theme-cellhire .auth-form__secure svg {
  width: 14px;
  height: 14px;
}

.theme-cellhire .password-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 24px;
}

.theme-cellhire .password-req {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-body);
}

.theme-cellhire .password-req__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 174, 66, 0.15);
  color: var(--green);
}

.theme-cellhire .password-req__icon svg {
  width: 10px;
  height: 10px;
}

.theme-cellhire .portal-tiles,
.theme-cellhire .dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.theme-cellhire .portal-tile,
.theme-cellhire .dashboard-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-tile);
  border-radius: var(--tile-radius);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  color: var(--text-heading);
  text-decoration: none;
}

.theme-cellhire .portal-tile__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.theme-cellhire .portal-tile__icon {
  width: 40px;
  height: 40px;
}

.theme-cellhire .portal-tile__title,
.theme-cellhire .dashboard-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 12px;
  line-height: 1.2;
}

.theme-cellhire .portal-tile__description,
.theme-cellhire .dashboard-card p {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0 0 auto;
}

.theme-cellhire .portal-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
  text-decoration: none;
  margin-top: 20px;
}

.theme-cellhire .portal-tile__link svg {
  width: 12px;
  height: 12px;
}

.theme-cellhire .auth-message-card,
.theme-cellhire .auth-form-card {
  background: transparent;
  border: 0;
  padding: 0;
}

.theme-cellhire .auth-form-card__button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-cellhire .auth-form-card__link-button {
  text-decoration: underline;
}

.theme-cellhire .dashboard-card__label {
  display: none;
}

.theme-cellhire .validation-summary-errors,
.theme-cellhire .text-danger,
.theme-cellhire .alert-danger {
  color: #dc2626 !important;
}

.theme-cellhire .validation-summary-errors ul,
.theme-cellhire .alert-danger ul {
  padding-left: 18px;
}

body.theme-simusage {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  line-height: 1.42857;
  color: #333;
  background-color: #f5f7fb;
}

.theme-simusage h1,
.theme-simusage h2,
.theme-simusage h3,
.theme-simusage h4,
.theme-simusage h5,
.theme-simusage h6 {
  font-family: proxima-nova, Helvetica, Arial, sans-serif;
}

.theme-simusage a,
.theme-simusage .btn-link {
  color: #7c7c7c;
  text-decoration: underline;
}

.theme-simusage a:visited,
.theme-simusage .btn-link:visited {
  color: #7c7c7c;
}

.theme-simusage a:hover,
.theme-simusage .btn-link:hover {
  color: #242536;
}

.theme-simusage a:active,
.theme-simusage .btn-link:active {
  color: #242536;
}

.theme-simusage .form-page,
.theme-simusage p,
.theme-simusage input,
.theme-simusage textarea,
.theme-simusage select,
.theme-simusage button {
  font-family: proxima-soft, Helvetica, Arial, sans-serif;
}

.theme-simusage .form-page,
.theme-simusage p {
  font-weight: 400;
  font-size: 1.2rem;
}

.theme-simusage .auth-card {
  width: 100%;
  max-width: 330px;
  display: block;
}

.theme-simusage .form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}

.theme-simusage .auth-panel {
  display: none;
}

.theme-simusage .auth-form,
.theme-simusage .portal-section,
.theme-simusage .auth-page {
  padding: 0;
}

.theme-simusage .auth-form__label,
.theme-simusage .auth-page__eyebrow,
.theme-simusage .portal-section__label,
.theme-simusage .dashboard-card__label {
  display: none;
}

.theme-simusage .auth-form__heading,
.theme-simusage .auth-page__title,
.theme-simusage .portal-section__heading {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-family: proxima-nova, Helvetica, Arial, sans-serif;
}

.theme-simusage .auth-form__subtitle,
.theme-simusage .auth-page__description,
.theme-simusage .portal-section__subtitle,
.theme-simusage .auth-message-card p {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: #333333;
  line-height: 1.42857;
}

.theme-simusage .auth-form__back {
  display: inline-block;
  margin-bottom: 1rem;
}

.theme-simusage .field-group,
.theme-simusage .auth-form-card__field {
  margin-bottom: 0.75rem;
}

.theme-simusage .form-signin .checkbox {
  font-weight: 400;
}

.theme-simusage .field-group__label,
.theme-simusage .auth-form-card__field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.theme-simusage .form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.theme-simusage .form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.theme-simusage .input-wrapper {
  position: relative;
}

.theme-simusage .input-wrapper__icon,
.theme-simusage .input-wrapper__toggle {
  display: none;
}

.theme-simusage .input-field,
.theme-simusage .form-signin .form-control,
.theme-simusage .auth-form-card .form-control {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background: #ffffff;
  box-shadow: none;
}

.theme-simusage .form-signin .form-control:focus {
  z-index: 2;
}

.theme-simusage .auth-form__options,
.theme-simusage .auth-form-card__checkbox {
  margin-bottom: 1rem;
}

.theme-simusage .checkbox-wrapper,
.theme-simusage .auth-form-card__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-simusage .btn,
.theme-simusage .auth-form-card__submit,
.theme-simusage .btn.btn-primary {
  color: #ffffff;
  background-color: #242536;
  border-color: #242536;
  border-radius: 0.3rem;
  min-height: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  font-family: proxima-soft, Helvetica, Arial, sans-serif;
}

.theme-simusage .btn-primary:hover,
.theme-simusage .btn-primary:focus,
.theme-simusage .btn-primary:active,
.theme-simusage .btn-primary.active,
.theme-simusage .open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #000000;
  border-color: #242536;
}

.theme-simusage .btn-primary:active,
.theme-simusage .btn-primary.active,
.theme-simusage .open .dropdown-toggle.btn-primary {
  background-image: none;
}

.theme-simusage .btn-primary.disabled,
.theme-simusage .btn-primary[disabled],
.theme-simusage fieldset[disabled] .btn-primary,
.theme-simusage .btn-primary.disabled:hover,
.theme-simusage .btn-primary[disabled]:hover,
.theme-simusage fieldset[disabled] .btn-primary:hover,
.theme-simusage .btn-primary.disabled:focus,
.theme-simusage .btn-primary[disabled]:focus,
.theme-simusage fieldset[disabled] .btn-primary:focus,
.theme-simusage .btn-primary.disabled:active,
.theme-simusage .btn-primary[disabled]:active,
.theme-simusage fieldset[disabled] .btn-primary:active,
.theme-simusage .btn-primary.disabled.active,
.theme-simusage .btn-primary[disabled].active,
.theme-simusage fieldset[disabled] .btn-primary.active {
  background-color: #242536;
  border-color: #242536;
}

.theme-simusage .btn-primary .badge {
  color: #242536;
  background-color: #ffffff;
}

.theme-simusage .auth-form__secure {
  display: none;
}

.theme-simusage .portal-tiles,
.theme-simusage .dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.theme-simusage .portal-tile,
.theme-simusage .dashboard-card {
  background: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 1.25rem;
  text-decoration: none;
  color: #333333;
}

.theme-simusage .portal-tile__icon {
  width: 32px;
  height: 32px;
}

.theme-simusage .portal-tile__title,
.theme-simusage .dashboard-card h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.25rem;
}

.theme-simusage .portal-tile__description,
.theme-simusage .dashboard-card p {
  font-size: 1rem;
  color: #333333;
}

.theme-simusage .portal-tile__link {
  display: inline-flex;
  margin-top: 1rem;
}

.theme-simusage .password-requirements {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 1rem;
}

.theme-simusage .alert-danger {
  color: #dc3545 !important;
  background-color: transparent;
  border-color: transparent;
}

.theme-simusage .alert-danger strong {
  display: none;
}

.theme-simusage .validation-summary-errors ul,
.theme-simusage .alert-danger ul {
  padding: 0;
}

.theme-simusage .validation-summary-errors ul li,
.theme-simusage .alert-danger li {
  list-style: none;
}

.theme-simusage .portal a:link,
.theme-simusage .portal a:visited {
  color: #ffffff;
  text-decoration: none;
}

.theme-simusage .validation-summary-errors ul {
  font-size: 16px;
}

.theme-simusage .text-danger.field-validation-error {
  font-size: 16px;
}

.signout {
  border: 0;
}

@media (max-width: 1024px) {
  .theme-cellhire .auth-panel {
    min-width: 280px;
    width: 38%;
    padding: 40px 32px;
  }

  .theme-cellhire .auth-panel__logo img {
    height: 44px;
  }

  .theme-cellhire .auth-panel__headline {
    font-size: 1.85rem;
  }

  .theme-cellhire .auth-form,
  .theme-cellhire .portal-section,
  .theme-cellhire .auth-page {
    padding: 40px 36px;
  }
}

@media (max-width: 768px) {
  body.theme-cellhire {
    padding: 16px 12px;
  }

  .theme-cellhire .auth-card {
    flex-direction: column;
    max-width: 100%;
    min-height: auto;
    border-radius: 12px;
  }

  .theme-cellhire .auth-panel {
    width: 100%;
    min-width: auto;
    padding: 28px 24px;
  }

  .theme-cellhire .auth-panel__headline {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .theme-cellhire .auth-panel__description {
    margin-bottom: 0;
  }

  .theme-cellhire .auth-panel__features {
    display: none;
  }

  .theme-cellhire .auth-form,
  .theme-cellhire .portal-section,
  .theme-cellhire .auth-page {
    padding: 28px 24px;
  }

  .theme-cellhire .portal-tiles,
  .theme-cellhire .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
