#login_div {
    position: fixed;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    background: url("images/brakeace.com.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(2px);
    z-index: -1;
}

#login_card {
    max-width: 500px;
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background-color: transparent;
    border-radius: 20px;
}

#login_card .card-body {
    background-color: rgba(72, 72, 72, 0.8);
    border: none;
    border-radius: 20px;
    padding: 2rem;
}

.overlayed-labels input {
    background-color: rgb(180, 180, 180);
    border: none;
    transform: translateY(1.9rem);
    margin-top: -.5rem;
    color: #333;
}

.overlayed-labels input+label {
    color: #333;
    margin-left: .75rem;
    transition: .25s;
    position: relative;
    font-weight: 700;
}

.overlayed-labels input:focus+label,
.overlayed-labels input:not(:placeholder-shown)+label {
    color: #fff;
    transform: translateY(-2rem);
}