* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Fidelity Sans, Arial, sans-serif;
}

*::after,
*::before {
    box-sizing: border-box;
}

a {
    color: #000;
}

body {
    transition: opacity ease-in 0.2s;
    background-color: #f2f2f2;
    border: 1px solid transparent;
    box-sizing: border-box;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-family: Fidelity Sans, Arial, sans-serif;
    height: 3.75rem;
    justify-content: space-between;
}

header .logo {
    margin: 1rem 0 0 1.25rem;
}

header .menu-text {
    margin: 0 1.25rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .menu-text a {
    color: #000;
    font-weight: 400;
    text-decoration: none;
    vertical-align: middle;
}

header .menu-text a:last-child {
    margin: 0 0 0 2rem;
}

main {
    margin: 15vh auto 0;
    padding-bottom: 2rem;
    width: 448px;
}

@media (min-width: 32em) {
    .login-card {
        border: 1px solid #ccc;
        border-radius: .5rem;
        padding: 2rem 2rem 3rem;
    }
}

.login-card {
    background: #fff;
}

.card-header p {
    color: rgb(0, 0, 0);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 32.5px;
}

.card-body {
    margin: 1.5rem 0 0;
}

.form-group:not(.remember-checkbox) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label:not(.remember-checkbox label) {
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 24px;
}

.remember-checkbox label {
    margin-left: 12px;
}

.mt-3 {
    margin-top: 8px;
}

.form-group input:not([type="checkbox"]) {
    appearance: none;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(127, 127, 127);
    border-radius: 8px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 19.2px;
    outline: none;
    padding: 8px 16px;
    width: 100%;
}

.password-input {
    position: relative;
}

.icon-right {
    position: absolute;
    right: 16px;
    top: 10px;
    cursor: pointer;
    transition: color ease-in 0.2s;
    width: 16px;
    height: 16px;
}

[x-cloak] {
    display: none !important;
}

.icon-right svg {
    width: 100%;
    height: 100%;
    color: rgb(0, 0, 0);
    cursor: pointer;
    display: inline-block;
    fill: rgb(0, 0, 0);
    text-align: center;
}

.remember-checkbox {
    margin-top: 16px;
    display: flex;
    align-items: center;
}

.form-group button[type="submit"] {
    margin-top: 24px;
    background: #368727;
    color: #fff;
    border: 1px solid #368727;
    border-radius: 8px;
    padding: 8px 16px;
    width: 100%;
    font: 700 16px "Fidelity Sans", Helvetica, Arial, sans-serif;
    cursor: pointer;
    height: 37.2px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-group input:disabled {
    pointer-events: none;
    opacity: 0.6;
    background-color: #f5f5f5;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: #fff;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.forgot-password {
    margin-top: 24px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    text-align: left;
    text-decoration: underline;
}

.alert-message {
    display: flex;
    gap: 16px;
    padding: 20px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    margin-bottom: 24px;
}

.alert-icon {
    width: 24px;
    height: 24px;
    fill: #856404;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-content {
    flex: 1;
}

.alert-title {
    color: #856404;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 24px;
}

.alert-description {
    color: #856404;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.contact-info {
    text-align: center;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 24px;
}

.contact-label {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.contact-number-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #368727;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(54, 135, 39, 0.2);
    cursor: pointer;
}

.contact-number-button:hover {
    background-color: #2d6e20;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(54, 135, 39, 0.3);
}

.contact-number-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(54, 135, 39, 0.2);
}

.phone-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.contact-hours {
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.help-text {
    text-align: center;
}

.help-text p {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.new-to-qrs-mobile {
    display: none;
}

@media screen and (min-width: 512px) {
    .new-to-qrs {
        margin-top: 32px;
        display: block;
        margin-bottom: 3rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}


footer.dom-footer {
    background-color: #f2f2f2;
    border: 1px solid transparent;
    color: #666;
    font-size: .75rem;
    font-weight: 400;
}

footer.dom-footer .dom-footer-pvd-link {
    color: #666 !important;
}

footer.dom-footer>p {
    font-family: Fidelity Sans;
    letter-spacing: 0;
    line-height: 1.5;
    max-width: 920px;
    text-align: left;
}

footer.dom-footer>div,
footer.dom-footer>p {
    box-sizing: border-box;
    padding: .75rem 1.25rem;
    width: 100%;
}

footer .bottom-text {
    display: flex;
    justify-content: space-between;
}

footer.dom-footer>div>div.footer-copyright {
    line-height: 1.5;
    text-align: start;
}

footer.dom-footer>div>div.footer-links {
    text-align: end;
}

footer.dom-footer .footer-links a {
    padding: .75rem 1.5rem .75rem 0;
}

footer.dom-footer>div>div.footer-links .pvd-link__icon.pvd-link__icon--right {
    display: none;
}

a.underline {
    text-decoration: underline !important;
}

@media screen and (max-width:511px) {
    footer.dom-footer>div {
        display: block;
    }

    footer.dom-footer>div>div.footer-links {
        text-align: start;
    }

    footer.dom-footer>div>div.footer-links .pvd-link__icon.pvd-link__icon--right {
        display: none;
    }
}

input.error {
    border: 1px solid rgb(224, 22, 22) !important;
}

input.error:hover {
    box-shadow: 0 0 0 2px rgb(224, 22, 22) !important;
}

.error-message {
    display: flex;
    align-items: center;
    gap: 4px;
}

.error-message span.icon {
    background-color: rgb(220, 22, 22);
    display: inline-block;
    fill: rgb(220, 22, 22);
    font-size: 14px;
    height: 21px;
    line-height: 21px;
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 24a12 12 0 1 1 0-24 12 12 0 0 1 0 24m1.25-10.76V6.92a1.25 1.25 0 0 0-2.5 0v6.32a1.25 1.25 0 0 0 2.5 0M12 18.79a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    position: relative;
    width: 16px;
    -webkit-mask-position-x: 50%;
    -webkit-mask-position-y: 50%;
}

.error-message span.error-message-text {
    color: rgb(220, 22, 22);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

@media only screen and (max-width:511px) {
    footer.dom-footer {
        font-size: .875rem;
    }
}

footer.dom-footer .footer-links a,
.left-text a {
    color: #666;
}

.blt::before {
    content: "\0046\0069\0064\0065\006c\0069\0074\0079";
}

@media (max-width: 768px) {
    main {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #ccc;
        padding: 1.5rem 1rem;
        background-color: #FFF;
    }

    .new-to-qrs {
        display: none;
    }

    .new-to-qrs-mobile {
        margin-top: 48px;
        display: block;
        margin-bottom: 3rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    header .menu-text {
        display: none;
    }

    header {
        border-bottom: unset;
    }

    .form-group label:not(.remember-checkbox label),
    .remember-checkbox label {
        font-size: 14px;
    }

    .form-group button[type="submit"] {
        font-size: 14px;
    }

    .forgot-password {
        font-size: 14px;
    }

    .card-header p {
        font-size: 24px;
    }

    .error-message span.error-message-text {
        font-size: 12px;
    }
}

@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-Regular.woff2')format('woff2'),
        url('../fonts/FidelitySans-Regular.woff')format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-Italic.woff2')format('woff2'),
        url('../fonts/FidelitySans-Italic.woff')format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-LightItalic.woff2')format('woff2'),
        url('../fonts/FidelitySans-LightItalic.woff')format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-Bold.woff2')format('woff2'),
        url('../fonts/FidelitySans-Bold.woff')format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-BoldItalic.woff2')format('woff2'),
        url('../fonts/FidelitySans-BoldItalic.woff')format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-ExtraBold.woff2')format('woff2'),
        url('../fonts/FidelitySans-ExtraBold.woff')format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-Light.woff2')format('woff2'),
        url('../fonts/FidelitySans-Light.woff')format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-UltraLight.woff2')format('woff2'),
        url('../fonts/FidelitySans-UltraLight.woff')format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FidelitySans-CondensedMedium";
    src: url('../fonts/FidelitySansCondensed-Medium.woff')format('woff'),
        url('../fonts/FidelitySansCondensed-Medium.woff2')format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Fidelity Sans";
    src: url('../fonts/FidelitySans-Demibold.woff2')format('woff2'),
        url('../fonts/FidelitySans-Demibold.woff')format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}