  /* Font import */
        @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700&display=swap");

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Open Sans", sans-serif;
        }

        body {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            width: 100%;
            padding: 0 10px;
        }

        /* Background image styling */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Using a placeholder for the background image */
            background: url(./img/loginPageBackground.webp), #000;
            background-position: center;
            background-size: cover;
            z-index: -1; /* Ensure background stays behind content */
        }

        .wrapper {
            max-width: 400px;
            width: 150%;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        form {
            display: flex;
            flex-direction: column;
        }
        
        /* Logo placeholder */
        .logo {
            width: 300px;
            height: 250px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            object-fit: contain;
        }

        h1 {
            font-size: 2.5rem; /* Adjusted font size */
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 30px;
            color: transparent;
            background-size: cover;
            background-position: center;
            /* Using a placeholder for the text-fill image */
            background-image: url(./img/UVLightBackground2.jpg);
            background-clip: text;
            -webkit-background-clip: text; /* For Safari */
        }

        .input-field {
            position: relative;
            border-bottom: 2px solid #ccc;
            margin: 15px 0;
        }

        .input-field label {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            color: #fff;
            font-size: 16px;
            pointer-events: none;
            transition: 0.15s ease;
        }

        .input-field input {
            width: 100%;
            height: 40px;
            background: transparent;
            border: none;
            outline: none;
            font-size: 16px;
            color: #fff;
        }

        .input-field input:focus~label,
        .input-field input:valid~label {
            font-size: 0.8rem;
            top: 10px;
            transform: translateY(-120%);
        }

        button {
            font-weight: 600; /* Adjusted font weight */
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            border-radius: 3px;
            font-size: 16px; /* Adjusted font size */
            border: 2px solid transparent;
            transition: 0.3s ease;
            text-transform: uppercase;
            margin-top: 20px; /* Added margin */
            margin-bottom: 20px; /* Adjusted margin */
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }

        button:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        
        /* --- Styles for the Result Area (from backup) --- */
        #resultContainer {
            padding-top: 1rem;
            text-align: center;
        }
        
        #resultContainer p {
            color: #eee; /* Light text color */
        }
        
        #usernameOutput {
            font-size: 1.5rem; /* 2xl */
            font-weight: 700;
            color: #fff; /* White text */
            background-color: rgba(0, 0, 0, 0.3); /* Dark transparent background */
            padding: 0.5rem 1rem;
            border-radius: 0.5rem; /* rounded-lg */
            border: 1px solid rgba(255, 255, 255, 0.3);
            word-break: break-all;
        }
        
        .result-flex-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.5rem;
            gap: 0.5rem; /* space-x-2 */
        }

        #copyButton {
            padding: 0.5rem; /* p-2 */
            color: #ccc; /* text-gray-400 */
            background-color: rgba(255, 255, 255, 0.1); /* bg-gray-700 */
            border-radius: 0.5rem; /* rounded-lg */
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
        }

        #copyButton:hover {
            background-color: rgba(255, 255, 255, 0.2); /* hover:bg-gray-600 */
        }
        
        #copyButton svg {
            width: 1.25rem; /* w-5 */
            height: 1.25rem; /* h-5 */
        }

        #copyMessage {
            margin-top: 0.5rem;
            font-size: 0.875rem; /* text-sm */
            color: #4ade80; /* text-green-400 */
        }
        
        /* Message for password errors */
        #error-message {
             margin-top: 0.5rem;
            font-size: 0.875rem; /* text-sm */
            color: #f87171; /* text-red-400 */
        }
        
        .hidden {
            display: none;
        }

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
    margin-bottom:20px;
  }
  .wrapper {
    padding: 30px 15px;
  }
}
  
