@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*, *:before, *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body {
    background: #ffffff;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-size:14px;
    font-weight: 400;
    font-style: normal;
    margin:0px;
    line-height:1.3;
}
.width100 {
    width:100%;
}
.clear {
    clear: both;
}
.pull-left {
    float:left;
}
.pull-right {
    float: right;
}
.login_page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: wrap;
    padding: 30px;
    gap: 30px;
}
.login_banner {
    width: calc(100% - 530px);
    background: no-repeat center center;
    background-size: cover;
    border-radius:13px;
    position:relative;
}
    .login_banner .logo {
        width: 46px;
        position: absolute;
        left: 25px;
        top: 25px;
    }
    .login_banner .footer {
        font-size:12px;
        position: absolute;
        left: 0px;
        bottom: 0px;
        padding: 22px 25px;
        color: #fff;
        width:100%;
        opacity:0.9;
    }
    .login_banner .footer a {
        color:#fff;
        text-decoration:none;
    }
        .login_banner .footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
.ft_menu .sep {
    display:inline-block;
    margin:0px 10px;
}
.login_form {
    width: 500px;
    padding: 20px;
    display: flex;
    align-items: center;
}
.login_form_content {
    display:block;
    width:100%;
}
.login_title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0px auto 10px;
}
.login_logo {
    display: block;
    width: 52px;
    margin:0px auto 10px;
}
.form-group {
    margin-bottom:13px;
}
.form-group label {
    font-size: 12px;
    color: #333333;
    display: block;
    margin: 0px 0px 3px 0px;
}
.form-control,
.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    font-size: 14px !important;
    color: #fff !important;
    background: #4D1629 !important;
    border-color: #4D1629 !important;
    height: 40px;
    outline: none !important;
    box-shadow: none !important;
}
    .btn-primary:hover {
        background: #258cfb !important;
        border-color: #258cfb !important;
    }

.alert {
    border: none !important;
    padding: 0px !important;
    margin: 0px 0px 10px !important;
    background: none !important;
    list-style-type:none !important;
    text-align:center;
}
    .alert ul,
    .alert li {
        color: #f00 !important;
        padding: 0px !important;
        margin: 0px !important;
        list-style-type: none !important;
    }

    @media(max-width:767px){
        .login_page {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-flow: column;
            padding: 15px;
            gap: 30px;
        }

        .login_banner {
            width: 100%;
            height: 600px;
            border-radius: 5px;
            order: 2;
        }
        .login_form {
            width: 100%;
            padding: 0px;
            order: 1;
        }
        .login_banner .logo {
            display:none;
        }
        .ft_menu,
        .poweredby {
            float: none !important;
            text-align: center;
            padding-top: 10px;
        }
    }