.html,
.body {
    height: 100%;
    overflow-x: hidden;
}

.body--login {
    background-color: white;

    @media (min-width: 992px) {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.heading {
    font-weight: bold;
    line-height: 50px;
    font-size: 32px;
    text-align: center;
    color: #000000;

    &--white {
        color: #FFFFFF;
    }
}

.invalid-feedback {
    display: block;
    max-width: 362px;
    margin: 0 auto 13px;
    text-align: left;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.required {
    &::before {
        content: '*';
        color: $red;
        display: inline-block;
    }
}

.label {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #000000;

    &--bold {
        font-weight: bold;
    }
}

.big-label {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: black;
}

.messages {
    @extend .container;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.link {
    color: $blue;

    &:hover {
        color: $blue;
        text-decoration: none;
    }
}

.terms {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;

    &-title {
        h2 {
            margin-bottom: 28px;
        }

    }

    &-inner {
        background-color: #fff;
        max-width: 784px;
        padding: 20px 29px 12px 34px;
        margin-bottom: 22px;
    }

    &__btn {
        max-width: 180px;
    }
}

.relative {
    position: relative;
}

.math-icon {
    width: 22px;
}

.font-weight-500 {
    font-weight: 500;
}
