.blue-link {
    color: blue;
    text-decoration: underline; /* Optional: Makes the link look like a typical hyperlink */
}

.blue-link:hover {
    color: darkblue; /* Optional: Changes color on hover */
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-logo img {
    height: 52px;
}

.mds-logo img {
    height: 52px;
}

@media screen and (max-width: 768px) {
    .login-logo img {
        max-height: 110px;
    }

    .mds-logo.mt-10 {
        margin-top: 1.5rem;
    }

    .mds-logo img {
        height: 44px;
    }
}