
    :root {
        --dark-green: #0B3D2E;
        --primary-green: #14532D;
        --light-green: #22C55E;
        --white: #ffffff;
    }

    * {
        font-family: 'Poppins', sans-serif;
    }

    body {
        min-height: 100vh;
        margin: 0;
        background: linear-gradient(135deg,
                #0B3D2E 0%,
                #14532D 50%,
                #166534 100%);
        overflow-x: hidden;
    }

    .main-wrapper {
        min-height: 100vh;
    }

    .brand-side {
        color: white;
        padding: 60px;
    }

    .brand-logo {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .12);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
        border: 1px solid rgba(255, 255, 255, .15);
    }

    .brand-logo i {
        font-size: 50px;
    }

    .brand-title {
        font-size: 52px;
        font-weight: 800;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .brand-subtitle {
        font-size: 18px;
        color: rgba(255, 255, 255, .85);
        margin-bottom: 40px;
    }

    .feature-box {
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 16px;
        padding: 20px;
        backdrop-filter: blur(10px);
        margin-bottom: 15px;
    }

    .feature-box i {
        font-size: 24px;
        margin-right: 10px;
    }

    .login-side {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px;
    }

    .login-card {
        width: 100%;
        max-width: 450px;
        background: #fff;
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    }

    .login-title {
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-green);
    }

    .login-subtitle {
        color: #6c757d;
        font-size: 14px;
        margin-bottom: 30px;
    }

    .form-label {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-control {
        height: 52px;
        border-radius: 12px;
    }

    .form-control:focus {
        border-color: #198754;
        box-shadow: 0 0 0 .15rem rgba(25, 135, 84, .15);
    }

    .password-wrapper {
        position: relative;
    }

    .toggle-password {
        position: absolute;
        right: 15px;
        top: 51px;
        cursor: pointer;
        color: #6c757d;
    }

    .btn-login {
        height: 52px;
        border: none;
        border-radius: 12px;
        background: linear-gradient(135deg,
                #14532D,
                #22C55E);
        color: white;
        font-weight: 600;
        transition: .3s;
    }

    .btn-login:hover {
        transform: translateY(-2px);
        color: white;
    }

    .copyright {
        text-align: center;
        margin-top: 25px;
        font-size: 13px;
        color: #6c757d;
    }

    .glass-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, .05);
    }

    .circle-1 {
        width: 350px;
        height: 350px;
        top: -100px;
        left: -100px;
    }

    .circle-2 {
        width: 250px;
        height: 250px;
        bottom: -70px;
        right: -70px;
    }

    @media (max-width: 991px) {
        .brand-side {
            display: none;
        }

        .login-card {
            max-width: 100%;
        }
    }
