 /* General Body Styling */
        body.login {
            background: linear-gradient(135deg, #0b1a2f, #1e3758);
            font-family: "Poppins", sans-serif;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
            position: relative;
            overflow: hidden;
        }

        /* Background Logo Pattern */
        body.login::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("https://kushklinic.app/wp-content/uploads/2024/09/kk-logo.png");
            background-repeat: repeat;
            background-size: 60px;
            opacity: 0.1;
            z-index: 1;
        }

        /* Foreground Content Styling */
        body.login #login {
            width: 350px;
            padding: 30px;
            border-radius: 10px;
            border: 2px solid #00eaff;
            box-shadow: 0px 5px 15px rgba(0, 234, 255, 0.5);
            background: #142536 !important;
            text-align: center;
            position: absolute;
            z-index: 2;
        }

        /* Logo Styling */
        body.login #login h1 a {
            background-image: url("https://kushklinic.app/wp-content/uploads/2024/09/kk-logo.png");
            background-size: contain;
            background-repeat: no-repeat;
            width: 100%;
            height: 70px;
            display: block;
            margin: 0 auto;
        }

        /* Center the Header Title Under the Logo */
        #login-header-title {
            margin-top: 10px;
            margin-bottom: 20px;
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0px 0px 5px rgba(0, 234, 255, 0.5); 
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Login Form Styling */
        body.login form#loginform {
            background-color: #132541 !important;
            border: 2px solid #00eaff !important;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 1px 5px rgba(0, 234, 255, 0.3); 
        }

        /* Form Label Styling */
        .login form#loginform label {
            font-weight: bold;
            color: #00eaff; 
        }

        /* Input Field Styling */
        .login form#loginform .input, 
        .login form#loginform input[type="text"], 
        .login form#loginform input[type="password"] {
            background: #ffffff !important;
            border: 1px solid #00eaff; 
            color: #141e30 !important;
            border-radius: 4px;
            margin-bottom: 15px;
        }

        .login form#loginform .input:focus {
            border-color: #00eaff;
            box-shadow: 0 0 8px #00eaff; 
        }

        /* Button Styling */
        .login #login #wp-submit {
            background: #2f6e3c !important;
            border: 1px solid #0056b3;
            color: #ffffff;
            text-shadow: none;
            box-shadow: 0 3px 6px rgba(0, 123, 255, 0.3);
            transition: all 0.3s ease;
        }

        .login #login #wp-submit:hover {
            background: #20b53f !important;
            box-shadow: 0 4px 10px rgba(0, 234, 255, 0.6);
        }

        /* Link Styling */
        .login #nav a, 
        .login #backtoblog a {
            color: #ffffff !important;
            text-decoration: none;
            font-weight: 600;
        }

        .login #nav a:hover, 
        .login #backtoblog a:hover {
            color: #00eaff !important;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            body.login #login {
                width: 90%;
                padding: 20px;
            }
            #login-header-title {
                font-size: 16px;
            }
        }