  /* Your CSS styles */
        /* Base styles */
        body, html {
            height: 100%;
            margin: 0;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #24282d;
        }
        /* Container styling */
        .container {
            text-align: center;
            background: #1e1e1e;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            width: 90%;
            max-width: 400px;
            transition: transform 0.3s ease-in-out;
            opacity: 85%;
        }
        
        .container:hover {
            transform: translateY(-10px);
        }
        
        /* Logo styling */
        .logo-container {
            margin-bottom: 20px;
        }
        
        .logo {
            width: 200px;
            animation: logoAnimation 3s infinite alternate ease-in-out;
        }
        
        @keyframes logoAnimation {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.2);
            }
        }
        
        /* Form styling */
        .login-form h2 {
            margin-bottom: 15px;
            color: #8d9189;
        }
        
        .input-field {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 25px;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
            box-sizing: border-box;
        }
        
        .input-field:focus {
            border-color: #81BD43;
            box-shadow: 0 0 10px rgba(129, 189, 67, 0.5);
            outline: none;
        }
        
        .login-button {
            width: 100%;
            padding: 12px;
            background-color: #81BD43;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            margin-top: 20px;
        }
        
        .login-button:hover {
            background-color: #5d6771;
            box-shadow: 0 0 10px rgba(93, 103, 113, 0.5);
        }
        
        /* Alert styling */
        .alert {
                padding: 10px;
                margin-bottom: 20px;
                border: 1px solid transparent;
                border-radius: 5px;
                font-size: 16px;
                text-align: center;
            }
        
            .alert-danger {
                color: #a94442;
                background-color: #f2dede;
                border-color: #ebccd1;
            }
        
        /* Footer styling */
        .app-footer {
                width: 100%;
                text-align: center;
                /* background: #2c3e50; */
                padding: 10px 0;
                position: absolute;
                bottom: 0;
                left: 0;
                color: white;
            }
        
            .footer .copyright {
                font-size: 14px;
            }
        
            .app-link {
                color: #81BD43;
                text-decoration: none;
            }
        
            .app-link:hover {
                text-decoration: underline;
            }
        
        /* Responsive design */
        @media (max-width: 600px) {
            .container {
                padding: 10px;
            }
        
            .logo {
                width: 200px;
            }
        
            .input-field, .login-button {
                padding: 10px;
            }
        }
        
        .bai-jamjuree-extralight {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 200;
          font-style: normal;
        }
        
        .bai-jamjuree-light {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 300;
          font-style: normal;
        }
        
        .bai-jamjuree-regular {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 400;
          font-style: normal;
        }
        
        .bai-jamjuree-medium {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 500;
          font-style: normal;
        }
        
        .bai-jamjuree-semibold {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 600;
          font-style: normal;
        }
        
        .bai-jamjuree-bold {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 700;
          font-style: normal;
        }
        
        .bai-jamjuree-extralight-italic {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 200;
          font-style: italic;
        }
        
        .bai-jamjuree-light-italic {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 300;
          font-style: italic;
        }
        
        .bai-jamjuree-regular-italic {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 400;
          font-style: italic;
        }
        
        .bai-jamjuree-medium-italic {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 500;
          font-style: italic;
        }
        
        .bai-jamjuree-semibold-italic {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 600;
          font-style: italic;
        }
        
        .bai-jamjuree-bold-italic {
          font-family: "Bai Jamjuree", sans-serif;
          font-weight: 700;
          font-style: italic;
        }