    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        body {
            font-family: 'Inter', sans-serif;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;

            /* ---------- NEW GRADIENT BACKGROUND ---------- */
            background: linear-gradient(135deg,
                    #a0cf1a 0%,
                    #b8e06b 30%,
                    #d0ed9c 60%,
                    #e8f9cd 100%);
            /* --------------------------------------------- */
        }

        /* Optional subtle overlay to keep the glass-card readable */
        body::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, .15);
            backdrop-filter: blur(8px);
            z-index: 1;
        }

        .login-container {
            position: relative;
            z-index: 2;
            max-width: 400px;
            width: 100%;
            padding: 32px;
            background: rgba(255, 255, 255, .85);
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, .3);
        }

        .logo {
            text-align: center;
            margin-bottom: 16px
        }

        .logo svg {
            width: 32px;
            height: 32px
        }

        .title {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 8px
        }

        .subtitle {
            font-size: 14px;
            color: #555;
            text-align: center;
            margin-bottom: 32px;
            line-height: 1.5
        }

        .form-group {
            margin-bottom: 16px
        }

        .input-wrapper {
            position: relative
        }

        .input-wrapper input {
            width: 100%;
            padding: 14px 16px 14px 44px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 12px;
            background: #f9f9f9;
            transition: all .2s;
        }

        .input-wrapper input:focus {
            outline: none;
            border-color: #a0cf1a;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(160, 207, 26, .15);
        }

        .input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 18px;
        }

        .forgot-password {
            text-align: right;
            margin-bottom: 24px
        }

        .forgot-password a {
            font-size: 13px;
            color: #a0cf1a;
            text-decoration: none
        }

        .forgot-password a:hover {
            text-decoration: underline
        }

        .btn-primary {
            width: 100%;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            background: #a0cf1a;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: background .2s;
        }

        .btn-primary:hover {
            background: #8fb517
        }

        .divider {
            text-align: center;
            margin: 24px 0;
            position: relative;
            font-size: 14px;
            color: #888;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #ddd;
        }

        .divider span {
            background: rgba(255, 255, 255, .85);
            padding: 0 12px;
            position: relative;
            z-index: 1;
        }

        .social-login {
            display: flex;
            gap: 12px;
            justify-content: center
        }

        .social-btn {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 12px;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all .2s;
        }

        .social-btn:hover {
            border-color: #a0cf1a;
            background: #f8fff0;
        }

        .social-btn img {
            width: 20px;
            height: 20px
        }

        .watermark {
            position: absolute;
            bottom: 16px;
            right: 16px;
            font-size: 12px;
            color: rgba(255, 255, 255, .6);
            z-index: 1;
        }
        .title {
            margin-bottom: 28px; /* yaha gap adjust kar sakte ho */
        }
        
        .phone-prefix {
            position: absolute;
            left: 45px;
            top: 48%;
            transform: translateY(-50%);
            font-size: 16px;
            color: #000;
            /* font-weight: 500; */
        }
        input[name="phone"] {
            padding-left: 75px; /* make room for icon + prefix */
        }