html,
body{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    background:#F6F8FB;
}

*{
    box-sizing:border-box;
}

.logix-container{
    display:flex;
    min-height:100vh;
}

.logix-brand{
    width:38%;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(
        160deg,
        #08263F 0%,
        #0D4263 100%
        );
    color:#FFF;
    padding:60px;
    display:flex;
    flex-direction:column;
}

.brand-top{
    margin-bottom:60px;
}

.brand-company-logo{
    height:32px;
}

.brand-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.brand-logix-logo{
    width:240px;
    margin-bottom:40px;
}

.brand-content h2{
    font-size:28px;
    font-weight:600;
    margin-bottom:25px;
    color:#FFF;
}

.brand-content p{
    font-size:17px;
    line-height:32px;
    color:
        rgba(255,255,255,.75);
    max-width:420px;
}

.brand-footer{
    color:
        rgba(255,255,255,.60);
    font-size:14px;
}

.brand-watermark{
    position:absolute;
    right:-70px;
    bottom:-70px;
    width:430px;
    height:430px;
    background:
        url("../app/media/img/bg/watermark.png")
        center center
        no-repeat;
    background-size:contain;
    opacity:.025;
    pointer-events:none;
}

.logix-login{
    width:62%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#FFFFFF;
}

.login-box{
    width:430px;
}

.login-logo{
    width:170px;
    margin-bottom:35px;
}

.login-box h1{
    font-size:34px;
    font-weight:600;
    color:#172B4D;
    margin-bottom:10px;
}

.login-subtitle{
    color:#7A869A;
    font-size:17px;
    margin-bottom:40px;
}

.logix-form-group{
    margin-bottom:22px;
}

.logix-form-group label{
    display:block;
    margin-bottom:8px;
    color:#42526E;
    font-size:14px;
    font-weight:500;
}

.logix-input{
    width:100%;
    height:58px;
    border:
        1px solid #DFE3E8;
    border-radius:14px;
    padding-left:55px;
    padding-right:55px;
    font-size:15px;
    transition:
        border .25s,
        box-shadow .25s,
        transform .25s;
    position:relative;
    z-index:1;
    background:#fff;
}

.logix-input:focus{
    transform:translateY(-1px);
    outline:none;
    border-color:#18B7A3;
    box-shadow:
        0 0 0 4px
        rgba(24,183,163,.10);
}

.logix-action{
    margin-top:30px;
}

.forgot-password{
    display:block;
    margin-bottom:25px;
    color:#18B7A3;
    text-decoration:none;
    font-size:14px;
}

.logix-button{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:
        linear-gradient(
        90deg,
        #16C5B7,
        #0EB3A8
        );
    color:#FFF;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.30s;
    position:relative;
    overflow:hidden;
}

.logix-button:before{
    content:'';
    position:absolute;
    width:0;
    height:100%;
    left:0;
    top:0;
    background:
        rgba(255,255,255,.08);
    transition:.35s;
}

.logix-button:hover{
    transform:translateY(-2px);
    box-shadow:
        0 15px 35px
        rgba(0,0,0,.18);
}

.login-version{
    text-align:center;
    margin-top:35px;
    color:#97A0AF;
    font-size:13px;
}

@media(max-width:991px){
    .logix-container{
        flex-direction:column;
    }
    .logix-brand{
        width:100%;
        padding:40px;
    }
    .logix-login{
        width:100%;
        padding:60px 30px;
    }
    .login-box{
        width:100%;
        max-width:430px;
    }
}

.password-toggle{
    position:absolute;
    top:50%;
    right:18px;
    transform:translateY(-50%);
    border:none;
    background:none;
    color:#9AA5B1;
    font-size:18px;
    cursor:pointer;
    z-index:3;
    padding:0;
}

.password-toggle:hover{
    color:#18B7A3;
}

.input-wrapper{
    position:relative;
    width:100%;
}

.input-icon{
    position:absolute;
    left:20px;
    top:50%;
    transform:translateY(-50%);
    color:#9AA5B1;
    font-size:17px;
    z-index:2;
    pointer-events:none;
}

.has-icon{
    padding-left:52px;
}

.logix-input:hover{
    border-color:#C6CDD6;
}

.brand-divider{
    width:100px;
    height:3px;
    margin:30px 0;
    border-radius:10px;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.95),
        rgba(255,255,255,.15)
        );
}

.logix-brand:before{
    content:'';
    position:absolute;
    inset:0;
    background:
        url("../svg/network.svg");
    opacity:.06;
    pointer-events:none;
}

