@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #fff;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 1rem;
              font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
        }

        .login-form {
            width: 100%;
            max-width: 320px;
        }

        .title {
            font-size: 2rem;
            font-weight: 300;
        }

        .input-group {
            margin-bottom: 1.5rem;
        }

        input {
            width: 100%;
            padding: 1rem 0;
            border: none;
            border-bottom: 1px solid #ddd;
            background: transparent;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        input:focus {
            border-bottom-color: #007bff;
        }

        input::placeholder {
            color: #999;
        }

        .error {
            color: #e74c3c;
            font-size: 0.875rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }