.form-input.valid {
    background-image: url("/static/cil-check-circle.svg");
    background-size: 20px 20px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    border: 1px solid #32cd32;
}

.password-strength-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.strength-meter-background {
    width: 100%;
    height: 5px;
    background-color: #d9d9d9;
    border-radius: 5px;
}

.strength-meter {
    height: 5px;
    width: 0;
    background-color: #d9d9d9;
    border-radius: 5px;
}

.strength-meter.one {
    width: 25%;
    background-color: #ff2400;
}

.strength-meter.two {
    width: 50%;
    background-color: #ff7d00;
}

.strength-meter.three {
    width: 75%;
    background-color: #ffd700;
}

.strength-meter.four {
    width: 100%;
    background-color: limegreen;
}

.password-requirements {
    margin-top: 0.5rem;
    list-style: none;
    padding: 0;
}

.password-requirements li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 0.83rem;
}

.password-requirements li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("/static/check_circle_gray.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.password-requirements li.valid::before {
    background-image: url("/static/check_circle_green.svg");
}

.password-requirements li.invalid::before {
    background-image: url("/static/x_circle_red.svg");
}

.btn.sso-button {
    background-color: #0066cc;
    color: #ffffff;
}

.btn.sso-button:hover {
    background-color: #0052a3;
}

.options-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.options-divider .line {
    flex-grow: 1;
    height: 1px;
    background-color: #d4d4d4;
}

.options-divider .text {
    font-size: 0.875rem;
    color: #737373;
    white-space: nowrap;
}

.mt-sm {
    margin-top: 0.25rem;
}

.mt-md {
    margin-top: 1rem;
}

.mt-lg {
    margin-top: 16px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-sm {
    margin-bottom: 8px;
}

.mb-md {
    margin-bottom: 1rem;
}

.strength-label {
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.feedback-text {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.sso-section-title {
    margin: 0 0 16px 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.success-text {
    color: #32cd32;
}

.mt-sm-8 {
    margin-top: 8px;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.qr-code {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    display: block;
}

.info-panel {
    background-color: #e8f4fd;
    border: 1px solid #b3d9f2;
    border-radius: 4px;
    padding: 12px;
    margin: 16px 0;
    color: #0066cc;
}

.stacked-page {
    margin-top: 8vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.simple-card {
    width: min(100%, 440px);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    margin: 0 20px;
}

.simple-card .form-container {
    width: 100%;
    max-width: 100%;
    margin: 32px;
    gap: 30px;
}

.centered-card-logo {
    display: block;
    margin: 0 auto 18px auto;
}

.simple-card h1 {
    margin-top: 0;
    color: #1f2937;
    font-weight: 700;
}

.logo-small {
    height: 30px;
}

.copyright-information {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 16px;
}

.copyright-information a:not(.btn) {
    text-decoration: underline;
    font-weight: 500;
    font-size: 12px;
    color: #000000;
}

.copyright-information a:not(.btn):hover {
    color: #ff6e19;
}

@media screen and (max-width: 768px) {
    .qr-code {
        max-height: 150px;
    }

    .qr-code-container {
        padding: 12px;
        margin: 16px 0;
    }

    .stacked-page {
        margin-top: 0;
    }

    .simple-card {
        width: 100%;
    }

    .simple-card .form-container {
        margin: 24px;
    }
}

@media screen and (max-width: 576px) {
    .simple-card .form-container {
        margin: 24px 20px;
    }
}

