        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
            background-color: #f0f2f5;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .login-container {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 400px;
            overflow: hidden;
            animation: fadeIn 0.8s ease-in-out;
        }

        .login-header {
            background-color: #382d67;
            text-align: center;
            padding: 20px;
        }

        .login-header img {
            height: 60px;
            filter: brightness(0) invert(1);
        }

        .login-form {
            padding: 25px 20px;
        }

        .login-form label {
            display: block;
            margin: 12px 0 6px;
            color: #333;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .login-form input[type="text"],
        .login-form input[type="password"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-sizing: border-box;
            transition: all 0.3s ease;
            background: #f9f9f9;
        }

        .login-form input[type="text"]:focus,
        .login-form input[type="password"]:focus {
            border-color: #382d67;
            box-shadow: 0 0 8px rgba(78, 63, 146, 0.3);
            outline: none;
            background: #fff;
        }

        .login-form button {
            width: 100%;
            padding: 14px;
            background-color: #382d67;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .login-form button:hover {
            background-color: #3a2f70;
        }

        .login-form button i {
            margin-right: 8px;
        }

        .footer-links {
            text-align: center;
            padding: 12px;
            font-size: 0.85rem;
            background-color: #f0f2f5;
            border-top: 1px solid #ddd;
        }

        .footer-links p {
            color: #666;
            margin: 0;
        }

     

