body{

    margin:0;

    font-family:'Poppins',sans-serif;

    background:#f4f6f9;

}

.wrapper{

    display:flex;

}

.sidebar{

    width:260px;

    min-height:100vh;

    background:#0F548B;

    color:#fff;

    position:fixed;

}

.logo{

    padding:25px;

    text-align:center;

    background:#fff;

}

.logo img{

    height:60px;

}

.sidebar .nav-link{

    color:#fff;

    padding:14px 25px;

    display:block;

    transition:.3s;

}

.sidebar .nav-link i{

    margin-right:10px;

}

.sidebar .nav-link:hover,

.sidebar .nav-link.active{

    background:#ED2330;

    color:#fff;

}

.main{

    margin-left:260px;

    width:calc(100% - 260px);

}

.admin-header{

    background:#fff;

    padding:18px 30px;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

    position:sticky;

    top:0;

    z-index:999;

}

.content{

    min-height:100vh;

}
/*=====================================
        Aditi Power Tech Login
======================================*/

:root{

    --primary:#ED2330;

    --secondary:#0F548B;

    --dark:#2B2B2B;

    --white:#FFFFFF;

    --light:#F5F7FA;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(135deg,#0F548B 0%,#ED2330 100%);

    min-height:100vh;

}

a{

    text-decoration:none;

}
.page-header p{
    color: rgba(255,255,255,.85);
}
.login-section{

    position:relative;

    overflow:hidden;

}

.login-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.login-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-180px;

    right:-180px;

}

.login-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(0,0,0,.20);

    position:relative;

    z-index:10;

}

/*============================
        LEFT SIDE
=============================*/

.login-left{

    background:linear-gradient(rgba(15,84,139,.90),rgba(237,35,48,.85)),
    url("../images/login-bg.jpg") center center/cover;

    min-height:650px;

    color:#fff;

    position:relative;

}

.login-overlay{

    padding:60px 50px;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

/*============================
        LOGIN LOGO
=============================*/

.logo-box{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-bottom:35px;

}

.login-logo{

    display:block;

    width:auto;

    height:auto;

    max-width:280px;

    max-height:90px;

    object-fit:contain;

    background:transparent;

    padding:0;

    border-radius:0;

    box-shadow:none;

}

.login-left h2{

    font-size:38px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:20px;

}

.login-left p{

    font-size:16px;

    opacity:.95;

    line-height:1.8;

    margin-bottom:35px;

}

.login-features div{

    margin-bottom:16px;

    font-size:16px;

    font-weight:500;

}

.login-features i{

    color:#fff;

    margin-right:10px;

}

/*============================
        RIGHT SIDE
=============================*/

.login-form{

    padding:60px 50px;

}

.login-badge{

    display:inline-block;

    background:#ED2330;

    color:#fff;

    padding:8px 20px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.login-form h3{

    font-size:34px;

    font-weight:700;

    color:#2B2B2B;

}

.login-form p{

    color:#666;

}

/*============================
        FORM
=============================*/

.form-label{

    font-weight:600;

    margin-bottom:8px;

}

.input-group{

    border-radius:12px;

    overflow:hidden;

}

.input-group-text{

    background:#f7f7f7;

    border:1px solid #ddd;

    color:#0F548B;

}

.form-control{

    border:1px solid #ddd;

    padding:14px;

    box-shadow:none!important;

}

.form-control:focus{

    border-color:#ED2330;

}

.btn-outline-secondary{

    border-color:#ddd;

}

.btn-outline-secondary:hover{

    background:#ED2330;

    border-color:#ED2330;

}

/*============================
        BUTTON
=============================*/

.btn-login{

    background:#ED2330;

    color:#fff;

    border:none;

    padding:15px;

    border-radius:12px;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.btn-login:hover{

    background:#c71d28;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(237,35,48,.30);

}

/*============================
        LINKS
=============================*/

.forgot-link{

    color:#0F548B;

    font-weight:600;

}

.forgot-link:hover{

    color:#ED2330;

}

/*============================
        FOOTER
=============================*/

.login-footer{

    text-align:center;

    margin-top:35px;

    color:#777;

    font-size:14px;

    line-height:1.8;

}

.login-footer strong{

    color:#0F548B;

}

/*============================
        ALERT
=============================*/

.alert{

    border-radius:10px;

}

/*============================
        MOBILE
=============================*/

@media(max-width:991px){

    .login-left{

        display:none;

    }

    .login-form{

        padding:40px 30px;

    }

}

@media(max-width:576px){

    .login-form{

        padding:30px 22px;

    }

    .login-form h3{

        font-size:28px;

    }

    .btn-login{

        padding:13px;

    }

}