body {
    background-color: #ebeeef;
}

.login-form {
    width: 100%;
    max-width: 600px;
}

.login-form .card-img-top {
    max-height: 200px;
    object-fit: cover;
}

.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px;
}

.strike > span {
    position: relative;
    display: inline-block;
    color: gray;
}

.strike > span:before,
.strike > span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    height: 1px;
    background: silver;
}

.strike > span:before {
    right: 100%;
    margin-right: 15px;
}

.strike > span:after {
    left: 100%;
    margin-left: 15px;
}
