        * {
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        body {
            background: #f0f2f5;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .login-wrapper {
            background: #fff;
            padding: 2rem;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 0 12px rgba(0,0,0,0.1);
            border-radius: 10px;
        }
        .login-wrapper h2 {
            margin-bottom: 1.5rem;
            text-align: center;
            color: #333;
        }
        .login-wrapper form {
            display: flex;
            flex-direction: column;
        }
        .login-wrapper input {
            padding: 12px;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
        }
        .login-wrapper button {
            background-color: #1a73e8;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            background: linear-gradient(135deg, #74611d, #edc947, #a17717, #86711b, #b08f18);
        }
        .login-wrapper button:hover {
            background-color: #155ab6;
        }
        .error {
            color: red;
            margin-bottom: 1rem;
            text-align: center;
        }
    