﻿body {
  font-family: 'Raleway', sans-serif;
}
body {
    margin: 0;
}
.login_container {
    background: #e8eaf9;
    min-height: 100vh;
    padding: 15px;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.login_md label {
  font-family: 'Raleway', sans-serif;
}
.login_md {
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    position: relative;
    padding: 55px 85px !important;
}
span.heading_login {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    color: #555555;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
    display: block;
    font-weight: 500;
    padding-bottom: 32px;
}
.login_md label {
    font-size: 14px;
    color: #555555;
    line-height: 1.4;
    font-weight: 600;
    /*margin-bottom: 8px;*/
}
.form_login input.form-control {
    color: #555555;
    line-height: 1.2;
    font-size: 18px;
    display: block;
    width: 100%;
    background: transparent;
    height: 42px;
    padding: 0 25px 0 25px;
    font-weight: 500;
        border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-top:8px;
}
.form_login input.form-control:focus {
    box-shadow: none;
    border-color: #57b846;
    background: transparent !important;
    outline: none;
}
.form_login .form-group {
    position: relative;
    margin-bottom: 30px;
}
.form_login button {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 110px;
    height: 42px;
    background-color: #2196F3;
    border-radius: 27px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
    font-weight: 700;
}
    .form_login button:hover {
        background-color: #3F51B5;
    }
.form_login button:focus {
    outline: none;
    box-shadow: none;
}
@media (max-width: 576px) {
    .login_md {
    padding: 55px 30px !important;
}
}