
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .login-box {
            background: #8E44AD;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            max-width: 400px;
            width: 100%;
            text-align: center;
            color: #fff;
        }

        .login-box h2 {
            font-size: 2em;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .login-box input[type="email"],
        .login-box input[type="password"],
        .login-box input[type="submit"] {
            padding: 10px;
            margin: 10px 0;
            border-radius: 4px;
            border: 1px solid #ccc;
            width: calc(100% - 22px);
            box-sizing: border-box;
        }

        .login-box input[type="email"],
        .login-box input[type="password"] {
            background-color: #fff;
            color: #333;
        }

        .login-box input[type="submit"] {
            background-color: #007bff;
            color: #fff;
            cursor: pointer;
            border: none;
        }

        .login-box input[type="submit"]:hover {
            background-color: #e6b800;
        }

        .login-box input[type="submit"]:active {
            background-color: #cc9900;
        }

        .message {
            margin-top: 10px;
            color: red;
        }

        .email-message {
            margin-top: 10px;
            color: #fff;
            background-color: #28a745;
            padding: 15px;
            border-radius: 8px;
            font-size: 14px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .signup {
            margin-top: 20px;
            font-size: 14px;
            color: #fff;
        }

        .signup a {
            color: #ffcc00;
            text-decoration: none;
        }

        .signup a:hover {
            text-decoration: underline;
        }

        .forgot-password {
            margin-top: 10px;
            font-size: 14px;
            color: #fff;
            text-align: center;
        }

        .forgot-password a {
            color: #ffcc00;
            text-decoration: none;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        .toggle-password {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #666;
        }

        .toggle-password:hover {
            color: #333;
        }
          .download-btn {
            background: green;
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 15px;
            transition: all 0.3s ease;
            font-weight: bold;
            font-size: 16px;
        }

        .download-btn:hover {
            background: linear-gradient(135deg, #e67e22, #d35400);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .download-btn img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .login-box {
                padding: 20px;
            }

            .download-btn {
                padding: 10px 20px;
            }

            .download-btn img {
                width: 25px;
                height: 25px;
            }
        }
