html,
body {
  height: 100%;
}

body {
    background-color: #f8f9fa;
}

.login-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.body-noauth {
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (min-width: 576px) {
    .body-noauth {
        display: flex;
        align-items: center;
    }

    .login-container {
        max-width: 430px;
    }
}

.line-through {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.line-through__left,
.line-through__right {
    flex-grow: 1;
    margin: 0;
}

.line-through__content {
    padding-right: 1rem;
    padding-left: 1rem;
    color: #6c757d;
    font-weight: bolder;
    font-size: 80%;
    text-align: center;
    text-transform: uppercase;
}

.bg-img {
    position: relative;
}

.bg-img:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #343a40 20%, #000 100%);
    opacity: 0.5;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}
