/*CSS-Styles*/
body{padding: 0; margin: 0; }
.custom-bg {
    background-color: #EAEFEF;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-wrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login_error_style {
    color:red ;
}
    div#spinner
{
    display: none;
    width:100px;
    height: 100px;
    position: fixed;
    top: 50%;
    left: 50%;
    /*background:url('../Images/progress.gif') no-repeat center #fff;*/
     background:#EAEFEF;
    text-align:center;
    padding:10px;
    font:normal 16px Tahoma, Geneva, sans-serif;
    /*border:1px solid #666;*/
    margin-left: -50px;
    margin-top: -50px;
    z-index:2;
    overflow: auto;
}
img{width: 100%;}

.frm-title {
    color: #DD2C00;
    text-transform: uppercase;
    font-size: 20px;
    padding: 8px 0;
    font-weight: 700;
}
.right-logo {
    width: 250px;
    height: auto;
    margin: 5px auto 20px;
}
.login-container {
    margin: 0 auto;
        padding: 45px 48px 40px 8px;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.9em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #eaefef;
    background-clip: padding-box;
    border: 0;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn-primary, .btn-primary:active, .btn-primary:hover, .btn-primary:focus {
    color: #fff;
    background-color: #1F28D3;
    border-color: #1F28D3;
    text-transform: uppercase;
    box-shadow: 0 0 0 0.1rem rgba(31,40,211,1);
}
.btn.btn-custom {
    width: 100%;
    text-align: left;
    position: relative;
    background: #eaefef;
    color: #5A5959;
    /* margin-bottom: 22px; */
}
.dropdown .btn-custom::after {
    position: absolute;
    right: 12px;
    top: 16px;
}
.dropdown-menu.show {
    width: 100%;
    border: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #f30000;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(31,40,211,1);
}
.btn.btn-custom.focus, .btn.btn-custom:focus{box-shadow: 0 0 0 0.1rem rgba(31,40,211,1);}






