/* all */
* {
    margin: 0;
    padding: 0;
    font-family: Verdana;
}

h1 {
    text-align: center;
    color: #555 !important;
    padding-bottom: 10px;
}

h1::after {
    content: '';
    background: #4c85d3;
    display: block;
    height: 3px;
    width: 170px;
    margin: 20px auto 5px;
}

/* login */
#login {
    background: #efefef;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

.form-bg {
    background-color: rgba(255, 255, 255, 0.88);
    border: 1px solid transparent;
}

.login-form {
    padding: 15px;
}

.form-control {
    border-radius: 0 !important;
    border: none !important;
}

::placeholder {
    color: #555 !important;
}

.form-header {
    margin-top: 2rem;
}

.login-btn {
    float: right;
    margin-bottom: 2rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#78c3ff), color-stop(100%,#4c85d3)) !important;
}

/* footer */
#footer {
    background: #000;
    color: #fff;
    text-align: center;
    top: 50vh !important;
    position: relative;
}

#footer a {
    color: #ff8d06;
}

.footer-content {
    margin-bottom: 0rem !important;
}

@media screen and (max-width: 480px) {
    .footer-content {
        font-size: 10px;
    }
}