  html,
        body {
            height: 100%;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background: #050505;
            color: #fff;
            overflow-x: hidden;
        }

        body {
            background-image: url(../img/login-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    padding: 0;
    margin: 0 -15px 0 -15px;
    color: #ffffff;


        }

        .icon-circle {
  width: 4vw;
  height: 4vw;
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-left:auto;
  margin-right:auto;
  cursor:pointer;
}
        .main-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 40px 0;
            position: relative;
        }

        .brand-title {
            font-size: 72px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 10px;
        }

        .brand-title span {
            color: #ff5b00;
        }

        .brand-logo {
    width: 28vw;
    height:auto;
    max-width: 100%;
    margin-bottom: 5px;
    margin-left:auto;
    margin-right:auto;
}

        .subtitle {
            color: #cfcfcf;
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 15px;
        }

        .logo-grid {
            margin-top: 40px;
            background-color:rgba(255,255,255,0.92);
            padding:10px 20px 10px 20px;
            border-radius:6px;
        }

        .logo-item {
            text-align: center;
            margin-bottom: 50px;
        }

        .puzzle {
            width: 180px;
            height: 180px;
            margin: 0 auto 15px;
            border-radius: 30px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            color: #fff;
            font-weight: 700;
            font-size: 26px;
            line-height: 1.1;
            box-shadow: 0 0 25px rgba(255,255,255,0.1);
        }

        .green {
            background: linear-gradient(135deg, #ff5b00 0%, #73f2b2 100%);
        }

        .orange {
            background: linear-gradient(135deg, #ff5b00 0%, #ff5b00 100%);
        }

        .blue {
            background: linear-gradient(135deg, #37cfff 0%, #001f9f 100%);
        }

        .logo-caption {
            color: #8c8c8c;
            font-size: 18px;
            margin-top: 10px;
        }

        .login-card {
            background: rgba(20,20,20,0.95);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 0 40px rgba(0,0,0,0.6);
            position: relative;
            z-index: 2;
        }

        .login-card h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .login-card h2 span {
            color: #ff5b00;
        }

        .login-card p {
            color: #bcbcbc;
            font-size: 18px;
            margin-bottom: 40px;
        }

        .form-group label {
            color: #fff;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }

        .form-control {
            height: 58px;
            background: #0f0f0f;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
        }

        .form-control:focus {
            border-color: #ff5b00;
            box-shadow: none;
        }

        .forgot-link {
            color: #ff5b00;
            display: inline-block;
            margin: 10px 0 30px;
            text-decoration: none;
        }

        .btn-primary-custom {
            background: linear-gradient(90deg, #ff5b00, #ff7b2c);
            border: none;
            height: 58px;
            border-radius: 12px;
            width: 100%;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .btn-primary-custom:hover {
            background: linear-gradient(90deg, #ff7b2c, #ff5b00);
        }

        .divider {
            text-align: center;
            color: #777;
            margin: 20px 0;
            position: relative;
        }

        .divider:before,
        .divider:after {
            content: "";
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background: #333;
        }

        .divider:before {
            left: 0;
        }

        .divider:after {
            right: 0;
        }

        .btn-outline-custom {
            width: 100%;
            height: 58px;
            border-radius: 12px;
            background: transparent;
            border: 1px solid #444;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: #111;
            border-color: #ff5b00;
            color: #ff5b00;
        }

        .footer-features {
            margin-top: 60px;
            color: #8f8f8f;
            font-size: 16px;
        }

        .feature {
            display: inline-block;
            margin-right: 40px;
        }

        .help-block-custom {
            text-align: center;
            margin-top: 40px;
            color: #999;
        }

        .help-block-custom a {
            color: #ff5b00;
            text-decoration: none;
        }

        @media (max-width: 991px) {
            .brand-title {
                font-size: 48px;
            }

            .subtitle {
                font-size: 20px;
            }

            .login-card {
                margin: 25px 50px 25px 50px;
                padding:25px 50px 25px 50px;
            }

            .puzzle {
                width: 140px;
                height: 140px;
                font-size: 20px;
            }
        }