body {
            font-family: Inter, system-ui, SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;;
            background-color: #f4f4f4;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .login-container {
            background-color: #fff;
            padding: 24px 32px 24px 32px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            width: 320px;
        }

        .login-header {
            text-align: left;
        }

        .login-header h2 {
          color: #1a1e25;
          margin: 0;
          font-size: 20px;
          font-weight: 700;
          line-height: 28px;
        }

        .login-form {
            display: flex;
            flex-direction: column;
        }

        .login-form label {
          margin-bottom: 6px;
          font-size: 14px;
          font-weight: 500;
          line-height: 18px;
          color: #4e5863;
          display: block;
        }

        .login-form p {
          width: 100%;
          margin: 20px 0 0;
        }

        .login-form input {
          padding: 10px 6px 10px 12px;
          background: #fff;
          border: 1px solid #ccd1db;
          border-radius: 6px;
          font-size: 16px;
          font-weight: 400;
          line-height: 22px;
          color: #88909e;
          font-family: Inter, system-ui, SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
          margin: 0;
          outline: none;
          width: 100%;
          box-sizing: border-box;
        }

        .login-form button {
          border-radius: 6px;
          height: 44px;
          padding: 0 18px;
          margin-top: 24px;
          background: #305076;
          box-shadow: inset 0 0 0 1px transparent;
          color: #ffffff;
          font-size: 16px;
          font-weight: 500;
          line-height: 22px;
          appearance: none;
          box-sizing: border-box;
          cursor: pointer;
          width: 100%;
        }

        .login-form button:hover {
            background-color: #0056b3;
        }
