@font-face {
    font-family: 'Raleway';
    src: url('public/newtheme/assets/css/fonts/Raleway.eot');
    src: url('public/newtheme/assets/css/fonts/Raleway.eot?#iefix') format('embedded-opentype'),
        url('public/newtheme/assets/css/fonts/Raleway.woff2') format('woff2'),
        url('public/newtheme/assets/css/fonts/Raleway.woff') format('woff'),
        url('public/newtheme/assets/css/fonts/Raleway.ttf') format('truetype'),
        url('public/newtheme/assets/css/fonts/Raleway.svg#Raleway') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html {
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 100%;
}
body{
    font-family:Raleway;
    font-size:1rem;
    margin: 0;
}
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}
/* .container-height{
    min-height:110vh;
} */
.color-orange{
    color:#f47828;
}
.bg-theme{
    background-color: #322a7d;
}
.navbar-light .navbar-nav .nav-link {
    color: #322a7d;
    padding: 0px 15px;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #2197c7;
}
/*login page*/
.bg-login {
    background: url(../../assets/images/login-bg.png) no-repeat;
    /* height: calc(150vh - 212px); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
}
.left-img{
    width: 325px;
    height: 100%;
}

.logo {
    /* margin: 40px 0; */
    padding: 15px 0 0 0px;
}

.main {
    width: 90%;
    margin: 2.5rem auto;
    box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
    background: #322a7d;
    padding: 10px;
    border-radius: 25px;
    /* top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%); */
    /* box-shadow: 0px 0px 4px 0 #383838; */
}

.sign {
    /* font-size: 1.6rem; */
    /* margin: 15px auto 30px; */
    /* width: 60%; */
    font-family:'Raleway';
    line-height: 1.38;
    text-align: center;
    color: #fff;
}

.form-group {
    padding: 0 5%;
}
.form-group input {
    width: 100%;
    margin: 20px 0 10px 0;
    padding: 15px;
    border-radius: 1em;
    font-size: 1.2rem;
}
.fm-btn{
    display: flex;
    justify-content: center;
    align-items: center;

}
.fm-btn button:focus{
    outline:none;
}
.login-btn {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f47828;
    text-align: center;
    margin: 5px 0px 0px;
    cursor: pointer;
    /* background: transparent;
    border: 0; */
    transition: transform .2s;

}
 .login-btn:hover{
    transform: scale(1.1);
} 
.forgot-password {
    font-size: 1rem;
    line-height: 1.33;
    text-align: right;
    margin: 0px;
    cursor: pointer;
    transition: 1s;
}
.forgot-password a{
    color: #fff;
}
.forgot-password a:hover{
    color: #2197c7;

}
/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/* Additionally, you can use this to change the text color: */

/*Change text in autofill textbox*/
/* input:-webkit-autofill {
    -webkit-text-fill-color: yellow !important;
} */
/* ::-webkit-input-placeholder {
  text-transform: uppercase;
}

:-ms-input-placeholder { 
    text-transform: uppercase;
}

::placeholder {
    text-transform: uppercase;
} */
/* Footer section of login */
footer {
    /* width: 100%; */
    background: #322a7d;
    padding: 10px 0;
}

.footer-text {
    /* width: 90%; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;*/
    margin: 0 auto;
    color: #fff;
    padding-top: 10px;
}
.footer-text a.item {
    border: 1px solid #fff;
    padding: 10px;
    font-weight: 700;
    color: #fff ;
    margin: 10px;
    cursor: pointer;
    width: 180px;
    letter-spacing:1px;
    text-align: center;
    font-size: 0.74rem;
    transition: 1s; 
}
.footer-text a.item:hover {
    background: #fff;
    color: #322a7d;
    text-decoration: none;
}
form .error {
    color: #ff0000;
}
.social-icon{
    text-align: center;
}
.social-icon li a{
    background-color: #fff;
    color: #f47828;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    display: block;
    line-height: 40px;
    font-size: 20px;
}
.social-icon li a:hover{
    background-color: #f47828;
    color: #fff;
}
@media only screen and (min-width:320px) and (max-width:767px) {
    .main {
        width: 95%;
    }
    .main .logo h2{
        margin-top: 0px!important;
    }
    .sign {
        width: auto;
        font-size: 1.2rem;
        margin: 5px auto 10px;
    }
    .footer-text a.item{
        margin: 2px;
    }
    footer.fixed-bottom{
        position: unset;
    }
}