body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.bg-image {
    background: url(/static/images/front_page_bg.jpg) no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1000;
    padding: 0;
    margin: 0;
}
.section {
    background-color: #191919;
    color: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 15px black;
}

.login-img {
    background: url(/static/images/login_page.jpg) no-repeat;
    background-size: cover;
}

.right-content {
    padding: 80px 0;
}

.right-content .messg-colr p {
    color: rgb(215, 57, 57);
    position: absolute;
}

.right-content p {
    color: #a4a4a4;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: #191919;
    background-clip: padding-box;
    border: none;
    border-bottom: 2px solid #fff;
    appearance: none;
    border-radius: 0;
    transition: none;
}
.form-control:focus {
    color: #ffffff;
    background-color: #191919;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

.right-content .btns button {
    text-decoration: none;
    color: #191919;
    background: #fcb415;
    padding: 13px 60px;
    border-radius: 5px;
    font-weight: 600;
}
.right-content .btns button:hover {
    background: #ffc341; 
    color: black;
}

.right-content .right-remember-label {
    color: #bdbdbd;
}

.right-para {
    font-size: 13px;
}

#loginForm input{ max-width: 250px; margin:auto;} 