.text-sep {
    color: white;
    text-align: center;
    display: inline-block;
    position: relative;
    line-height: 0.3px;
    font-size: 24px;
}

.text-sep:before, .text-sep:after {
    content: "";
    position: absolute;
    height: 5px;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
    top: 0;
    width: 200px;
}

.text-sep:before {
    right: 100%;
    margin-right: 12px;
}

.text-sep:after {
    left: 100%;
    margin-left: 12px;
}

#create-account-btn:hover {
    background-color: #CE2029;
    color: white;
}

input[type="text"].form-control:focus, input[type="text"].form-control:active,
input[type="password"].form-control:focus, input[type="text"].form-control:active {
    /* background-color: white; */
    /* color: black; */
    border-color: #cc0000;
    box-shadow: 0 0 6px 0.2rem rgb(87, 16, 20);
}

@media (min-width: 100px) and (max-width: 749px) {
    .text-sep:before, .text-sep:after { 
        width: 130px;
    }
}