*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:sans-serif;
    background:#FAF8F5;
    overflow-x:hidden;
}

/* MAIN PAGE */

.main-login-page{
    width:100%;
    min-height:100vh;
    display:flex;
}

/* LEFT BUSINESS SECTION */

.business-section{
    width:60%;
    background:linear-gradient(
        135deg,
        #2B0040,
        #3B0059,
        #A0005A
    );
    position:relative;
    overflow:hidden;
    color:white;
    padding:60px;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.03);
}

.business-content{
    position:relative;
    z-index:2;
}

.main-logo{
    width:180px;
    height:180px;
    object-fit:cover;
    margin-bottom:30px;

    border-radius:50%;

    background:white;

    padding:15px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.25);

    border:4px solid rgba(255,255,255,0.2);
}
.business-content h1{
    font-size:70px;
    color:#F4B000;
    margin-bottom:10px;
    font-weight:800;
}

.tagline{
    font-size:24px;
    color:#f5e9ff;
    margin-bottom:40px;
}

/* FEATURES */

.feature-boxes{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.feature-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    padding:24px;
    border-radius:18px;
    font-size:17px;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.12);
}

/* STATS */

.software-stats{
    display:flex;
    gap:20px;
    margin-top:50px;
}

.stat-box{
    flex:1;
    background:rgba(255,255,255,0.08);
    padding:24px;
    border-radius:20px;
    text-align:center;
}

.stat-box h2{
    font-size:34px;
    color:#F4B000;
    margin-bottom:10px;
}

/* LOGIN SECTION */

.login-section{
    width:40%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    background:#FAF8F5;
}

/* LOGIN CARD */

.login-card{
    width:100%;
    max-width:450px;
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.login-header{
    text-align:center;
    margin-bottom:30px;
}

.login-logo{
    width:110px;
    height:110px;
    object-fit:cover;

    border-radius:50%;

    background:white;

    padding:10px;

    margin-bottom:15px;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.12);
}

.login-header h2{
    font-size:32px;
    color:#3B0059;
    margin-bottom:10px;
}

.login-header p{
    color:#777;
}

/* LOGIN TABS */

.login-tabs{
    display:flex;
    gap:10px;
    margin-bottom:30px;
}

.login-tabs button{
    flex:1;
    padding:14px;
    border:none;
    border-radius:12px;
    background:#eee;
    cursor:pointer;
    font-size:15px;
    transition:0.3s;
}

.login-tabs button:hover{
    background:#ddd;
}

.active-tab{
    background:#F4B000 !important;
    color:white;
}

/* FORM */

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

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#333;
    font-size:15px;
}

.form-group input{
    width:100%;
    padding:16px;
    border-radius:14px;
    border:1px solid #ddd;
    background:#fafafa;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus{
    border-color:#F4B000;
    background:white;
}

/* EXTRA OPTIONS */

.extra-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    font-size:14px;
}

.extra-options a{
    color:#A0005A;
    text-decoration:none;
}

/* LOGIN BUTTON */

.login-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #F4B000,
        #D89A00
    );
    color:white;
    font-size:17px;
    cursor:pointer;
    transition:0.3s;
}

.login-btn:hover{
    transform:translateY(-2px);
}

/* FOOTER */

.login-footer{
    margin-top:30px;
    text-align:center;
    color:#888;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .main-login-page{
        flex-direction:column;
    }

    .business-section,
    .login-section{
        width:100%;
    }

    .feature-boxes{
        grid-template-columns:1fr;
    }

    .software-stats{
        flex-direction:column;
    }

}

@media(max-width:600px){

    .business-section{
        padding:30px;
    }

    .business-content h1{
        font-size:48px;
    }

    .tagline{
        font-size:18px;
    }

    .login-section{
        padding:20px;
    }

    .login-card{
        padding:25px;
    }

}