body {
    margin: 0px;
    padding: 0px;
}

.loginBanner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.loginBanner .login_form {

    max-width: 450px;
    background: rgb(34 34 34 / 90%) !important;
}

.loginBanner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(222 179 124 / 20%);
}

.loginBanner .BrandLogo a {
    display: block;
}

.loginBanner .BrandLogo a img {
    width: 150px;
    height: 150px;
}

.loginBanner .BrandLogo {
    margin: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login_content {
    width: 400px;
    height: auto;
    min-width: 280px;
    margin-top: 30px;
}

@media screen and (max-width: 500px) {
    .login_content {
        width: 200px;
        height: auto;
        min-width: 280px;
        margin-top: 30px;
    }

}

.login_form {
    z-index: 22;
    background-color: #fff;
    padding: 30px;
    min-width: 300px;
    box-shadow: 0px 10px 34px -15px rgb(0 0 0 / 24%);
}

.login_head h1 {
    text-align: center;
    color: white;

}

.form-control {
    border-radius: 0;
    width: 100%
}

.form-control:focus {
    border-color: #CCD0D7;
    box-shadow: none !important
}

.login_content {
    margin: 0 auto;
    padding: 0;
    position: relative;
    min-width: 280px
}

.login_content h1 {
    font: normal 25px Helvetica, Arial, sans-serif;
    letter-spacing: -0.05em;
    line-height: 20px;
    margin: 20px 0 30px
}

.login_content h1:before,
.login_content h1:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 27%
}

.login_content h1:after {
    background: #7e7e7e;
    background: linear-gradient(left, #7e7e7e 0%, #fff 100%);
    right: 0
}

.login_content h1:before {
    background: #7e7e7e;
    background: linear-gradient(right, #7e7e7e 0%, #fff 100%);
    left: 0
}

.login_content h1:before,
.login_content h1:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 20%
}

.login_content h1:after {
    background: #7e7e7e;
    background: linear-gradient(left, #7e7e7e 0%, #fff 100%);
    right: 0
}

.login_content h1:before {
    background: #7e7e7e;
    background: linear-gradient(right, #7e7e7e 0%, #fff 100%);
    left: 0
}

.login_content form {
    margin: 0;
    position: relative
}

.email {
    display: block;
    width: 100%;
    height: 30px;
    padding: 6px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #555555;
    background-image: none;
    border: 1px solid #555555;
    color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

.email:focus {
    outline: none;
    border: none;

}

.password {
    display: block;
    width: 100%;
    height: 30px;
    padding: 6px;
    font-size: 14px;
    line-height: 1.42857143;
    margin-top: 5%;
    background-color: #555555;
    background-image: none;
    border: 1px solid #555555;
    color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

.password:focus {
    outline: none;
    border: none;
}


.btn {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: auto;
    display: block;
    width: 40%;
    height: 40px;
    padding: 6px;
    font-size: 14px;
    line-height: 1.42857143;
    margin-top: 5%;
    background-color: #555555;
    background-image: none;
    border: 1px solid #555555;
    color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    cursor: pointer;
}

.btn:focus {
    border: none;
    outline: none;
}