﻿
.main_content {
    max-width: 500px;
    min-width: 355px;
}

.main_content--login {
    min-height: 100vh;
}

.footer-container {
    background: #fff;
    position: sticky;
    bottom: 0;
}

.is-current {
    border-bottom: 3px solid var(--text-second-color);
    color: var(--text-main-color);
}

.is-current a {
    color: var(--text-main-color) !important;
}

.login_options {
    display: flex;
    gap: 20px;
    font-size: 1.25rem;
    font-weight: 500;
/*    border-bottom: 2px solid lightgray;*/
}

.login_option a {
    color: #ccc;
}

.input-set {
    display: flex;
    gap: 20px;
}

.required {
    color: #C1272D;
    font-size: 0.7rem;
    margin-left: 10px;
}

.m-form__group-label {
    font-size: 0.875rem;
    font-weight: 500;
}

/*.footer-container {
    position: sticky;
    width: 100%;
    bottom: 0;
}*/


@media only screen and (max-width: 600px) {
    .login_options {
        font-size: 1rem;
    }

    .footer-container {
        position: static;
    }
}