:root {
  --prussian-blue-100: #0e3151;
  --prussian-blue-75: #3b5672;
  --prussian-blue-50: #697e94;
  --prussian-blue-25: #98a7b7;
  --prussian-blue-7: rgba(14, 49, 81, 0.07);
  --xanthous-100: #f0bc59;
  --xanthous-75: #f9ca70;
  --xanthous-50: #fed27d;
  --xanthous-25: #ffdb99;
  --baby-blue-100: #9bcbe7;
  --baby-blue-75: #afd5ec;
  --baby-blue-50: #c3e0f1;
  --baby-blue-25: #d7eaf6;
  --tea-green-100: #d2dab3;
  --tea-green-50: #e9edc9;
  --peach-100: #ffc797;
  --peach-50: #fed8b1;
  --timberwolf-100: #e5e1da;
  --timberwolf-50: #f1f0e8;
  --wga-blue: #006ba8;
  --bg-gray: #f5f5f5;
  --border-gray: #f1f1f1;
  --white: #ffffff;
  --white-85: rgba(255, 255, 255, 0.85);
  --error-500: #f04438;
  --error-300: #fda29b;
  --error-100: rgba(240, 68, 56, 0.1);
  --warning-500: #eb8202;
  --warning-300: #f9c298;
  --warning-100: rgba(235, 130, 2, 0.1);
  --success-500: #10805a;
  --success-100: rgba(17, 125, 88, 0.1);
  --success-300: #93bda8;
}

/* General */
body {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    color: var(--prussian-blue-100);
    background-color: var(--prussian-blue-100);
}

.container {
    max-width: 1240px;
}

@media (max-width: 992px) {
    .row>* {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Global Header */
.global-header {
    min-height: 120px;
    height: 100%;
    background-color: var(--prussian-blue-100);
    color: var(--white);
}

.global-header .container {
    max-width: 1400px;
    min-height: 120px;
    height: 100%;
}

.global-header .navbar {
    min-height: 120px;
    height: 100%;
}

.global-header .brand-logo img {
    height: 40px;
    width: auto;
}

/* Login Form */
.login-form {
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    height: calc(100vh - 120px);
}

.login-form>.container {
    height: 100%;
}

.login-form>.container>.row {
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-form__outer-container {
    background-color: var(--white);
    color: var(--prussian-blue-100);
    padding: 40px;
    width: 400px;
}

.login-form__login-title h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.login-form__inner-container .form-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.login-form__inner-container .form-label-wrapper .form-label {
    margin-bottom: 0;
}

.login-form__inner-container .form-input {
    margin-bottom: 10px;
}

.login-form__inner-container .form-label {
    font-weight: 600;
    line-height: 150%;
}

.login-form__inner-container .form-control {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    padding: 12px;
    min-height: 44px;
}

.login-form__inner-container .form-control::placeholder {
    color: var(--prussian-blue-50);
}

.login-form__inner-container .forgot-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.login-form__inner-container .forgot-link:hover {
    text-decoration: none;
}

.login-form__inner-container .reset-link {
    text-decoration: none;
}

.login-form__inner-container .reset-link:hover {
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.login-form__inner-container .btn-primary,
.login-form__inner-container .btn-outline-primary {
    width: 100%;
    margin-top: 20px;
}

.login-form__inner-container .create-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: block;
    margin-top: 10px;
}

.login-form__inner-container .create-link:hover {
    text-decoration: none;
}

.login-form__inner-container .faq-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: block;
    margin-top: 20px;
}

.login-form__inner-container .faq-link:hover {
    text-decoration: none;
}

@media (max-width: 576px) {
    .hero-hero__login-form .form-label-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Login Validation Messages */
.login-form__inner-container .error-msgs {
    font-size: 16px;
    line-height: 150%;
    color: var(--error-500);
    margin-top: 10px;
}

.login-form__inner-container .validator-msgs {
    font-size: 16px;
    line-height: 150%;
    color: var(--error-500);
    margin-top: 6px;
}

/* Login Page */
.login-layout {
    position: relative;
    background-color: var(--prussian-blue-100);
    color: var(--white);
    min-height: 100vh;
    overflow-x: clip;
}

.login-layout a:not(.btn) {
    color: inherit;
}

.login-layout .btn-primary {
    background-color: var(--prussian-blue-100);
    color: var(--white);
    border-color: transparent;
    border-radius: 6px;
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-layout .btn-primary:hover,
.login-layout .btn-primary:active,
.login-layout .btn-primary:focus,
.login-layout .btn-primary:focus-visible {
    background-color: var(--prussian-blue-75);
    border-color: transparent;
}

.login-layout .btn-outline-primary {
    background-color: var(--white);
    color: var(--prussian-blue-100);
    border-color: var(--prussian-blue-100);
    border-radius: 6px;
    border-width: 2px;
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-layout .btn-outline-primary:hover,
.login-layout .btn-outline-primary:active,
.login-layout .btn-outline-primary:focus,
.login-layout .btn-outline-primary:focus-visible {
    background-color: var(--prussian-blue-100);
    border-color: var(--prussian-blue-100);
    color: var(--white);
}

.login-layout .form-label {
    font-weight: 600;
}

.login-layout .form-control {
    height: 44px;
    border-radius: 6px;
    border: 1px solid var(--prussian-blue-25);
    color: var(--prussian-blue-100);
    font-weight: 500;
}

.login-layout .form-control::placeholder {
    color: var(--prussian-blue-50);
}